Containerize Codewalkers with a multi-stage Docker build (Node + Caddy) and add a seed script that populates the database with a demo initiative, 3 phases, 9 tasks, 3 agents with JSONL log output, a root page, review comments, and a git repo with real branch diffs for the review tab.
16 lines
202 B
Caddyfile
16 lines
202 B
Caddyfile
:3000 {
|
|
handle /trpc/* {
|
|
reverse_proxy localhost:3847
|
|
}
|
|
|
|
handle /health {
|
|
reverse_proxy localhost:3847
|
|
}
|
|
|
|
handle {
|
|
root * /app/apps/web/dist
|
|
try_files {path} /index.html
|
|
file_server
|
|
}
|
|
}
|