Aucune description

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

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