From the project root directory run npm install
Run with node: npm start
Build the docker image: docker build -t parra-node-quickstart .
Run with docker: docker run -P parra-node-quickstart
Run with docker (detached): docker run -d parra-node-quickstart
Run npm test
Once you see Running on port 80
, you can verify the endpoint works by running curl -X POST http://localhost/v1/parra/auth/token
. In the response body you should see a key access_token
with the signed JWT.