- Issue an
npm install
command.
- 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
5432
port is exposed to5400
. You can spin it up with thedocker compose up
.
Check the tasks.md for the details.