Initialize backend and frontend structure with Docker setup and dependencies

This commit is contained in:
Mireya Cueto Garrido
2026-04-16 09:12:00 +02:00
commit 1b7214d96c
6 changed files with 81 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app ./app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
View File
+11
View File
@@ -0,0 +1,11 @@
fastapi
uvicorn
sqlalchemy
psycopg2-binary
httpx
pydantic
python-dotenv
lxml
apscheduler
authlib
redis