alexjavabraz / 2wp-api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

2wp-api

This is the API component for 2-Way-Peg solution.

Development Mode

Include a .env file with the required environment variables listed in .env.test file (you can copy that file).

Install dependencies

npm install

To only install resolved dependencies in package-lock.json:

npm ci

Session DB

Move to the SessionDB folder and run:

docker-compose up -d

RSK DB

Move to the rsk-database folder, copy your .env file in it and then run:

docker-compose up -d

For some reason passing --env-file argument to docker-compose doesn't seem to be working fine. That's why we need to copy the .env file here too.

Run the application

If you want to start the API alongside the daemon run:

npm start

If you prefer to execute just the API run:

npm run start-api

Open http://127.0.0.1:3000 in your browser to discover the API capabilities

If you prefer to execute just the daemon run:

npm run start-daemon

Fix code style and formatting issues

npm run lint

To automatically fix such issues:

npm run lint:fix

Depĺoyment

In the root directory run:

docker-compose up

Other useful commands

  • npm run openapi-spec: Generate OpenAPI spec into a file

Tests

npm test

LoopBack

Report Security Vulnerabilities

To report a vulnerability, please use the vulnerability reporting guideline for details on how to do it.

About

License:MIT License


Languages

Language:TypeScript 98.7%Language:HTML 0.8%Language:Dockerfile 0.3%Language:Shell 0.2%Language:JavaScript 0.0%