This is backend for repositories: TMA basic app
yarn installBefore running the app, make sure to set up the required environment variables. You may need to create a .env file in the project root directory with the following keys:
- BOT_TOKEN
- DATABASE_URL
With BOT_TOKEN you can find in father bot in telegram
# 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