cp .env.example .env
cd deploy
cp .env.example .env
Update docker file and run deploy file
cp docker-compose.yml.example docker-compose.yml
deploy.sh
docker exec -it lucis_api sh
yarn db:push
# OR
yarn migrate deploy
# Or update by run sql query
yarn install
yarn generate
# development
$ yarn start
# watch mode
$ yarn start:dev
# production mode
$ yarn start:prod
# unit tests
$ yarn test
# e2e tests
$ yarn test:e2e
# test coverage
$ yarn test:cov