Three-stage Dockerfile: frontend-build (Node 20), api (Python 3.12 + uvicorn), web (nginx 1.27). nginx.conf proxies /api and /ws to the API service with WebSocket upgrade support. Includes backend/requirements.txt with all Python deps, frontend scaffolding (Vite + React + TypeScript + Tailwind), and placeholder alembic files for Docker COPY compatibility.
4 lines
171 B
INI
4 lines
171 B
INI
# Alembic Configuration (placeholder — will be configured in the Alembic setup task)
|
|
[alembic]
|
|
script_location = alembic
|
|
sqlalchemy.url = sqlite:///data/promptlooper.db
|