Skip to content

Rigtch/rigtch-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NestJS Template

Nestjs template repository

Tech stack

TypeScript NodeJS NestJS RxJS

Yarn ESLint Jest

Docker GitHub Actions

Usage

Setup

Make sure to have installed right version of Node.js in nvm

nvm use

Don't forget to install the dependencies:

yarn install

Running the app

# Build Docker Image
yarn docker:build

# Run Docker Image
yarn docker:start

# Run app
yarn start

# Run app in watch mode
yarn start:dev

# Run app in debug mode
yarn start:debug

# Run app in production mode
yarn start:prod

Test

# unit tests
yarn run test

# unit tests in watch mode
yarn run test:watch

# e2e tests
yarn run test:e2e

# e2e tests in watch mode
yarn run test:e2e:watch

# Runing tests in coverage mode
yarn test:coverage