mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-05 22:50:17 +00:00
04652615f6
engine:app → engine:api to match Responder. Remove FLASK_ENV and DISABLE_ANALYTICS which were leftover from the Flask era. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
347 B
YAML
12 lines
347 B
YAML
services:
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./tuftecms:/app/tuftecms
|
|
- ./engine.py:/app/engine.py
|
|
restart: unless-stopped
|
|
command: ["uvicorn", "engine:api", "--host", "0.0.0.0", "--port", "8000", "--reload", "--reload-dir", "/app/tuftecms", "--reload-dir", "/app/data"]
|