Deployment
Self-hosted via Docker Compose. No external SaaS dependencies required.
Quick Start
The stack includes 2 containers:
- db -- Postgres 16 (schema applied automatically from
server/schema.sql) - app -- Unified build: Hono API server + pg-boss worker + Vite React frontend (all served from a single container)
Environment Variables
See Configuration for the full list. At minimum, set OPENAI_API_KEY.
Rebuilding
Health Check
The API server exposes GET /health. Docker Compose runs this automatically.
Database
Schema is applied automatically on first docker compose up via server/schema.sql mounted into the Postgres init directory. Seed data is loaded from server/seed.sql.
To reset the database:
Ports
| Service | Port |
|---|---|
| App (UI + API) | 3000 |
| Postgres | 5432 |