Add Docker Compose + Podman support for local dev #98
+161
−2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add docker-compose.yml to run backend (FastAPI/uvicorn) and frontend (Vite) together, with ./data mounted for persisted conversations.
backend/Dockerfile using uv sync --frozen and running uvicorn backend.main:app on 0.0.0.0:8001
frontend/Dockerfile running Vite dev server on 0.0.0.0:5173
.dockerignore to keep images small
Make frontend API base configurable via VITE_API_BASE (defaults to http://localhost:8001).
Expand backend CORS to include 127.0.0.1 origins for local/container workflows.
Configure Vite dev server (host: true, port: 5173, strictPort: true) for container use.
Add env.template and document .env setup (keeps secrets out of git; avoids podman-compose missing env-file issues).
Update README.md with Docker Compose and podman-compose commands (detached/foreground/logs/stop).