env.example
file from root of project and create a new .env
file from it.npm install
npm start
npm run watch
.GET
request to <host:port>/api/
to see the API welcome response.npm test
to start the unit tests.Coming soon...
We use JWT Bearer authentication. To get a authentication token, send a POST request to /api/login` with a valid email & password. You'll receive the token in response.
To authenticate further requests, set HTTP header Authorization
to Bearer <auth-token>
in http request.