- Issue an
npm installcommand. - Rename
.env.exampleto.envfor development and fill the proper values.
- Start a development server in watch mode:
npm run dev. - Run all tests:
npm test. - Run a specific test file
npm test -- <file name>. - Create a production build (TS -> JS):
npm run build. - Start the production build:
npm start. - A Postgres DB is provided within a compose file. The
5432port is exposed to5400. You can spin it up with thedocker compose up.
Check the tasks.md for the details.