Files
parsshop-back/README.md
2026-03-26 11:49:21 +03:00

35 lines
582 B
Markdown

# ParsShop Backend
Phase 1 bootstrap for a NestJS backend focused on bearings e-commerce.
## Included
- PostgreSQL + TypeORM
- Global validation pipe
- Standard API response interceptor
- Core entities: User, Product, Category
- OTP phone auth + JWT access/refresh tokens
- RBAC guards for roles and permissions
## Quick Start
1. Copy `.env.example` to `.env`
2. Make sure your PostgreSQL service is running and matches `DB_URL`
3. Install dependencies:
```bash
npm install
```
4. Run the app:
```bash
npm start
```
5. Open Swagger:
```bash
http://localhost:3000/docs
```