Skip to content

Latest commit

 

History

History
57 lines (41 loc) · 690 Bytes

README.md

File metadata and controls

57 lines (41 loc) · 690 Bytes

Installation

Update ENV app and env docker

cp .env.example .env
cd deploy
cp .env.example .env

Run with docker:

Update docker file and run deploy file

cp docker-compose.yml.example docker-compose.yml
deploy.sh

Update db

docker exec -it lucis_api sh
yarn db:push
# OR
yarn migrate deploy
# Or update by run sql query

Running the app local

yarn install
yarn generate

# development
$ yarn start

# watch mode
$ yarn start:dev

# production mode
$ yarn start:prod

Test

# unit tests
$ yarn test

# e2e tests
$ yarn test:e2e

# test coverage
$ yarn test:cov