New API for Green Meet projet build with Nest framework using Typescript
You sould run a postGreSQL database locally to test and run app. After that, you should add a "./env" file in /config directory and add credentials like this :
PGHOST=localhost
PGDATABASE=<your DB name>
PGUSER=<username>
PGPORT=5432
PGPASSWORD=<user password>
SECRET=<"Your secret">
Then populate database with tables. You will find SQL instruction with tables here :
./config/database.init.sql
$ npm install
# 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
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.
A progressive Node.js framework for building efficient and scalable server-side applications.