17 lines
279 B
Markdown
17 lines
279 B
Markdown
# Backend
|
|
|
|
## Run with Docker (from project root)
|
|
|
|
```bash
|
|
make build
|
|
make up
|
|
```
|
|
|
|
API base URL: `http://localhost:3000/api`
|
|
Swagger: `http://localhost:3000/api/docs`
|
|
|
|
Backend container startup command runs:
|
|
1. `npm run migration:run`
|
|
2. `npm run seed`
|
|
3. `npm run start:prod`
|