dbdbb77daf
Struttura monorepo completa con server FastAPI e client Flask: - Server: FastAPI + SQLAlchemy 2.0 async + Alembic migrations - Client: Flask + blueprints (auth, measure, maker, statistics) - Database: docker-compose MySQL 8.0 + Alembic async config - Config: pydantic-settings, TailwindCSS, Flask-Babel i18n - Piano implementazione completo (18 sezioni, 1600 righe) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
381 B
Plaintext
29 lines
381 B
Plaintext
# FastAPI + ASGI
|
|
fastapi>=0.110.0
|
|
uvicorn[standard]>=0.30.0
|
|
|
|
# Database
|
|
sqlalchemy[asyncio]>=2.0.0
|
|
asyncmy>=0.2.0
|
|
alembic>=1.13.0
|
|
|
|
# Validation
|
|
pydantic>=2.0.0
|
|
pydantic-settings>=2.0.0
|
|
|
|
# Security
|
|
passlib[bcrypt]>=1.7.0
|
|
bcrypt>=4.0.0
|
|
|
|
# File handling
|
|
pillow>=10.0.0
|
|
python-multipart>=0.0.6
|
|
|
|
# Reports
|
|
plotly>=5.0.0
|
|
kaleido>=0.2.0
|
|
weasyprint>=62.0
|
|
|
|
# Utilities
|
|
python-dotenv>=1.0.0
|