- PUT /
- 201: wish is created
- GET /?uuid=[WISH_UUID]
- 200: wish is computed
- 204: wish is waiting for being computed
- Docker
- Node >16
- Npm
# install node modules
$ npm install
# fill application environment variables
$ cp .env.example .env
# start docker container with database
$ docker compose up
# run database migrations
$ npm run typeorm:run-migrations
# start app in dev mode
$ npm run start:dev
# unit tests
$ npm run test:unit
# e2e tests
$ npm run test:e2e