mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
3362985c1d
- Upgrade Fly.io VMs from shared to performance CPUs for dedicated compute - Remove --reload flag from docker-compose for better local performance - Improves response times and consistency under load - Cost increase: ~$10-15/month for dedicated CPU performance
14 lines
292 B
YAML
14 lines
292 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
|