Then:
- Open postman
- import collection
- select the file "API documentation.postman_collection.json"
- right click on the new collection that appeared
- view documentation
$ npm install -g @nestjs/cli
$ git clone https://github.com/MahmoudMNael/order-management-system.git
$ npm install
Add variables:
- DATABASE_URL with the database connection string
- JWT_SECRET with the secret key of your jwt tokens
$ npx prisma migrate dev
$ npx prisma db seed
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# e2e tests
$ npm run test:e2e