NestJS + PostgreSQL + Docker
Required to have installed bash, Node/npm, Docker, and Docker Compose
$ Clone repository and Rename .env.example to .env$ npm installBuild docker images and run containers:
$ docker-compose up --build -dRun database initialization script after docker containers were started:
$ npm run db:initor create database in container and run migrations and seeds manually:
$ docker exec -it api sh -c "npm i sequelize-cli ; npx sequelize-cli db:migrate ; npx sequelize-cli db:seed:all"All endpoints described in Swagger API Documentation:
$ npm run test