|
3 | 3 | "private": true, |
4 | 4 | "scripts": { |
5 | 5 | "dev": "turbo run dev", |
6 | | - "build": "turbo run build", |
7 | 6 | "start": "turbo run start", |
| 7 | + "start:frontend": "turbo run start:frontend --filter=audora-frontend", |
| 8 | + "start:backend": "turbo run start:backend --filter=audora-backend", |
| 9 | + "start:signal": "turbo run start:signal --filter=audora-signal", |
| 10 | + "build": "turbo run build", |
| 11 | + "build:frontend": "docker build -f docker/frontend.prod.Dockerfile -t audora-frontend .", |
| 12 | + "build:backend": "docker build -f docker/backend.prod.Dockerfile -t audora-backend .", |
| 13 | + "build:signal": "docker build -f docker/signal.prod.Dockerfile -t audora-signal .", |
8 | 14 | "lint": "turbo run lint", |
9 | | - "start:frontend": "turbo run start:frontend", |
10 | | - "start:backend": "turbo run start:backend", |
11 | | - "start:signal": "turbo run start:signal", |
12 | | - "infra:up": "docker compose up -d", |
13 | | - "infra:down": "docker compose down", |
14 | 15 | "format": "prettier --write \"**/*.{ts,tsx,md}\"", |
15 | 16 | "check-types": "turbo run check-types", |
16 | 17 | "db:up": "docker-compose -f docker/db.docker-compose.yml up -d", |
17 | 18 | "db:down": "docker-compose -f docker/db.docker-compose.yml down", |
18 | 19 | "db:deploy": "turbo run db:deploy", |
19 | | - "generate": "turbo run generate" |
| 20 | + "generate": "turbo run generate", |
| 21 | + "infra:up": "docker compose up -d", |
| 22 | + "infra:down": "docker compose down" |
20 | 23 | }, |
21 | 24 | "devDependencies": { |
22 | 25 | "prettier": "^3.5.3", |
|
0 commit comments