availabili.tf/backend-flask/requirements.txt

33 lines
458 B
Plaintext
Raw Normal View History

2024-11-02 12:33:27 -07:00
flask
# CORS
2024-11-02 12:33:27 -07:00
Flask-CORS
# ORM
2024-11-02 12:33:27 -07:00
sqlalchemy
Flask-SQLAlchemy
SQLAlchemy-Utc
# form/data validation
2024-12-09 17:03:43 -08:00
pydantic==2.9.2
spectree==1.4.1 # generates OpenAPI documents for us to make TypeScript API
# clients based on our pydantic models
2024-11-02 12:33:27 -07:00
# DB migrations
2024-11-02 12:33:27 -07:00
alembic
Flask-Migrate
requests
2024-11-06 20:56:21 -08:00
pytz # timezone handling
2024-11-27 01:03:41 -08:00
discord-webhook # for sending messages to Discord webhooks
2024-12-09 17:03:43 -08:00
celery[redis]
Flask-Testing
2024-12-10 18:18:40 -08:00
# for production
gunicorn
psycopg[binary]