Initial commit

This commit is contained in:
2026-08-25 04:08:13 +00:00
commit e2fec5d3dc
12 changed files with 3273 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM python:3.13-slim
WORKDIR /app
RUN pip install --no-cache-dir fastapi uvicorn "psycopg[binary]" python-multipart jinja2 httpx
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]