Générateur de coupon de réduction
# generation des images
$ docker-compose build
# demarrage de la stack
$ docker-compose up
$ 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
# création
$ curl -d '{"isPercent":false, "amount": 5, "activate": true}' -H "Content-Type: application/json" -X POST http://localhost:3000/v1/coupons
# récupération d'un coupon
$ curl -X GET "http://localhost:3000/v1/coupons/5b4de5092fa29d5515f2aa1f"
# récupération des coupons
$ curl -X GET "http://localhost:3000/v1/coupons"