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)
- Host: GitHub
- URL: https://github.com/tednaaa/boiler-store-api
- Owner: tednaaa
- License: mit
- Created: 2023-04-18T17:14:10.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-03T14:51:41.000Z (about 3 years ago)
- Last Synced: 2025-07-13T19:42:13.819Z (11 months ago)
- Topics: fakerjs, jest, nestjs, nestjs-testing, nodejs, postgresql, sequelize, swagger, typescript, yookassa
- Language: TypeScript
- Homepage:
- Size: 457 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```