2 Commits

Author SHA1 Message Date
Danamir
d686b26465 update requirements 2025-11-10 08:37:23 +03:00
Danamir
08e979ecb2 uppdate 2025-11-10 08:35:07 +03:00
2 changed files with 45 additions and 9 deletions

14
.gitignore vendored
View File

@@ -2,8 +2,20 @@
.idea
venv/
instance/
# Ignore Python bytecode caches everywhere
__pycache__/
**/__pycache__/
# Migrations and DB files
migrations/
*.csv
*.db
# Data and temp files
*.csv
c*.txt
# Legacy specific ignores (if present)
backend/venv
backend/__pycache__
backend/routeres/__pycache__

24
requirements.txt Normal file
View File

@@ -0,0 +1,24 @@
# FastAPI backend
annotated-types==0.7.0
anyio==4.9.0
click==8.2.1
colorama==0.4.6
fastapi==0.116.1
greenlet==3.2.3
h11==0.16.0
idna==3.10
pydantic==2.11.7
pydantic_core==2.33.2
sniffio==1.3.1
SQLAlchemy==2.0.42
starlette==0.47.2
typing-inspection==0.4.1
typing_extensions==4.14.1
uvicorn==0.35.0
# Flask app
Flask==3.0.3
Flask-Migrate==4.0.7
Flask-SQLAlchemy==3.1.1
waitress==3.0.2