mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
9aab232937
The bible module was only imported inside get_books() but was referenced in study_guide_detail() for verse lookups, causing all verse texts to fail silently. Also excludes .venv from Docker volume mount to prevent local/container environment conflicts. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
301 B
YAML
14 lines
301 B
YAML
services:
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- .:/app
|
|
- /app/.venv
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
- PRELOAD_INTERLINEAR=true
|
|
restart: unless-stopped
|
|
command: uv run uvicorn kjvstudy_org.server:app --host 0.0.0.0 --port 8000 --reload
|