Compare commits
2 Commits
72f1d53051
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d686b26465 | ||
|
|
08e979ecb2 |
30
.gitignore
vendored
30
.gitignore
vendored
@@ -1,9 +1,21 @@
|
||||
.vscode
|
||||
.idea
|
||||
venv/
|
||||
instance/
|
||||
__pycache__/
|
||||
migrations/
|
||||
*.csv
|
||||
*.db
|
||||
c*.txt
|
||||
.vscode
|
||||
.idea
|
||||
venv/
|
||||
instance/
|
||||
|
||||
# Ignore Python bytecode caches everywhere
|
||||
__pycache__/
|
||||
**/__pycache__/
|
||||
|
||||
# Migrations and DB files
|
||||
migrations/
|
||||
*.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
24
requirements.txt
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user