2024-11-02 12:33:27 -07:00
|
|
|
flask
|
|
|
|
|
2024-11-03 14:29:59 -08:00
|
|
|
# CORS
|
2024-11-02 12:33:27 -07:00
|
|
|
Flask-CORS
|
|
|
|
|
2024-11-03 14:29:59 -08:00
|
|
|
# ORM
|
2024-11-02 12:33:27 -07:00
|
|
|
sqlalchemy
|
|
|
|
Flask-SQLAlchemy
|
|
|
|
SQLAlchemy-Utc
|
|
|
|
|
2024-11-03 14:29:59 -08:00
|
|
|
# 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
|
|
|
|
2024-11-03 14:29:59 -08: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]
|
2024-12-10 10:22:32 -08:00
|
|
|
|
|
|
|
Flask-Testing
|
2024-12-10 18:18:40 -08:00
|
|
|
|
|
|
|
# for production
|
|
|
|
gunicorn
|
|
|
|
psycopg[binary]
|