Initial commit - Bolsa app avec Tailwind et authentification

This commit is contained in:
2026-07-22 16:37:53 +02:00
commit 2057d693cd
14 changed files with 594 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir flask flask-sqlalchemy pymysql cryptography
EXPOSE 5000
CMD ["python", "run.py"]