Sin descripción

mrs4z e05db9ebcb typo hace 2 años
src e05db9ebcb typo hace 2 años
.editorconfig b5de80eee2 base commit hace 2 años
.eslintrc.js b5de80eee2 base commit hace 2 años
.gitignore b5de80eee2 base commit hace 2 años
.prettierrc b5de80eee2 base commit hace 2 años
README.md 3c93a56f88 init readme hace 2 años
config.json b5053a72a4 update back hace 2 años
nest-cli.json b5de80eee2 base commit hace 2 años
ormconfig.json b5de80eee2 base commit hace 2 años
package.json b5de80eee2 base commit hace 2 años
tsconfig.build.json b5de80eee2 base commit hace 2 años
tsconfig.json b5de80eee2 base commit hace 2 años
yarn.lock b5de80eee2 base commit hace 2 años

README.md

Описание

Начальная база для быстрого развертывания бэка на NestJS

Что включает?

Компоненты

  • Подключенный MySQL (config -> ormconfig.json)
  • i18n - языковой пакет для мультиязычности
  • SwaggerUI (http://APP_URL_API/api)
  • Базовая авторизация по JWT (+ endpoints and guards)
  • Обработчик ошибок (возвращается в формате объекта code, errors)
  • Валидация

Модели

  • Users (базовая модель которая включает в себя email и password)

Перед запуском

Установить все node пакеты

$ yarn install

Произвести ряд настроек

  • Настройка соединения с MySQL -> ormconfig.json
  • Базовые настройки CORS и т.д -> config.json

Запуск

# development
$ yarn start

# watch mode
$ yarn start:dev

# production mode
$ yarn start:prod