$ yarn install
# development
$ yarn run start
# watch mode
$ yarn run start:dev
# production mode
$ yarn run start:prod
# unit tests
$ yarn run test
# e2e tests
$ yarn run test:e2e
# test coverage
$ yarn run test:cov
# Launch web database visualizer
yarn prisma studio
# start from develop branch
$ git checkout develop
# Create a new branch
$ git checkout -b branch-name
# Commit your changes
$ git commit -am 'Add some feature'
# Push to the branch
$ git push origin branch-name
# Create a new Pull Request
-
Start the docker container with the database, it will be open on 5432 port
docker compose -f path_to/docker-compose.yml -p transcendance up -d db
-
Start the backend
- Check the right url for datasource in
prisma/schema.prisma
- Start the backend
yarn start:dev
- Check the right url for datasource in