first commit

This commit is contained in:
rjb
2025-12-21 00:20:27 +08:00
commit 6fb3c6c23d
42 changed files with 2265 additions and 0 deletions

19
requirements/base.txt Normal file
View File

@@ -0,0 +1,19 @@
# 基础依赖 - 项目运行必需
# Flask核心框架
flask>=2.2.0
# 数据库ORM
flask-sqlalchemy>=3.0.2
# 数据库迁移
flask-migrate>=4.0.4
# 跨域支持
flask-cors>=3.0.10
# 环境变量管理
python-dotenv>=1.0.0
# HTTP请求库
requests>=2.28.0