An open API service indexing awesome lists of open source software.

https://github.com/tednaaa/boiler-store-api

🏖️ Boiler store API built with NestJS + PostgreSQL (Sequelize)
https://github.com/tednaaa/boiler-store-api

fakerjs jest nestjs nestjs-testing nodejs postgresql sequelize swagger typescript yookassa

Last synced: 2 months ago
JSON representation

🏖️ Boiler store API built with NestJS + PostgreSQL (Sequelize)

Awesome Lists containing this project

README

          

### [Frontend repo](https://github.com/tednaaa/boiler-store)

# Init project

> Check requirments in .tool-versions (asdf)

> Create .env from example & install dependencies

```
cp .env.example .env
npm install
```

> Run PostgreSQL before running API server

```
pg_ctl start
```

> Running migrations & seeds

```
npx sequelize-cli db:migrate
npx sequelize-cli db:seed:all
```