A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
Click the link to see the API documentation Swagger OpenAPI also for the other documentation more specific and robustic follow this step-by-step bellow:
# unit tests
$ npm run doc:generate
# e2e tests
$ npm run doc
And visit this link Documentation
Example .env
file bellow:
NODE_ENV="development"
NODE_PORT=5000
APP_TITLE="quadro-kanban-api"
APP_USERNAME="letscode"
APP_PASSWORD="lets@123"
APP_JWT_SECRET_KEY="HeloWorld"
APP_JWT_EXPIRES="5m"
APP_DB_HOST="localhost"
APP_DB_PORT=3306
APP_DB_USERNAME="root"
APP_DB_PASSWORD="root"
APP_DB_DATABASE="kanban"
APP_SWAGGER_TITLE="API Quadro Kanban"
APP_SWAGGER_DESCRIPTION="API de Quadro Kanban para organização e acompanhamento de tarefas. Este recurso permite que você crie quadros personalizados, adicione colunas e gerencie tarefas em cada coluna."
APP_SWAGGER_VERSION="v0.0.1"
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.
- Author - Kamil Myśliwiec
- Website - https://nestjs.com
- Twitter - @nestframework
Nest is MIT licensed.