blob: e52d3f238d4132f89b80ec331e3f5c8b49af1f07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
services:
api:
build:
context: .
dockerfile: Dockerfile.dev
command: ["bun", "--watch", "packages/api/src/index.ts"]
ports:
- "3000:3000"
volumes:
- .:/app
environment:
OPENCODE_API_KEY: ${OPENCODE_API_KEY:-}
DISPATCH_MODEL: ${DISPATCH_MODEL:-deepseek-v4-flash}
DISPATCH_WORKING_DIR: /app
frontend:
build:
context: .
dockerfile: Dockerfile.dev
command: ["bun", "run", "--cwd", "packages/frontend", "dev", "--", "--host"]
ports:
- "5173:5173"
volumes:
- .:/app
|