- Install all packages with
npm install
- Set your required environment variables as you see fit in a
.env
file following the sample.env.example
structure provided. Default PORT is 3002 (see config folder). - There are 3 node environments: production, development and test.
You can run in production with
npm start
, development withnpm run dev
and tests withnpm test
(not tests yet)
- Requests folder inside tests folder is there to share
.rest
files which can be used as altarnative to postman and can be run in VSCode for testing purposes.