Minimal api for prc, stateless JWT & public API for NRTS-PRC
Start the server by running npm start
Check the swagger-ui on http://localhost:3000/docs
- POST
http://localhost:3000/api/login/tokenwith the following body{ "username": "username", "password": "password" }
and take the token that you get in the response
- GET
http://localhost:3000/api/applicationagain with the following headerAuthorization: Bearer _TOKEN_, replacing_TOKEN_with the value you got from request #4