EVNotify backend of new v3 app.
$ npm install
The backend requires Node.JS.
It is recommended to use the LTS version (18.16.0).
Other versions might work as well.
As a database system, MongoDB is required (v6 recommended).
In order to be able to run the server properly, a few things needs to be set up first.
Copy the .env.example
file to .env
.
Adjust the variable values based to your needs.
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov