Backend for zuju app
$ npm install.env
DB_USER=zuju
DB_PASS=password
DB_NAME=zuju# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prodAfter running the app, the swagger document would be on this URI:
http://localhost:3000/api_docs/Example/Test Sql data in data.sql file. You should import it to your database before running the test.
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov