first_commit

This commit is contained in:
superlishunqin 2025-04-20 10:06:08 +08:00
commit 5361bf6eda
9 changed files with 61 additions and 0 deletions

56
.gitignore vendored Normal file
View File

@ -0,0 +1,56 @@
# Python字节码文件
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# Flask实例文件夹
instance/*
!instance/.gitkeep
# 环境变量文件
.env
.flaskenv
# 数据库文件
*.db
*.sqlite
*.sqlite3
# 日志文件
*.log
logs/
# IDE相关
.idea/
.vscode/
*.swp
*.swo
.DS_Store
.coverage
htmlcov/
.pytest_cache/
# 迁移文件夹中的版本文件
migrations/versions/
# 开发环境的静态文件或上传文件
uploads/

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# 高可用学习平台
这是一个基于Flask架构的高可用学习平台集成了登录系统、网盘、邮箱、在线代码编译、视频网站、AI平台等多种功能。
本系统采用分布式架构,通过全球多个节点实现高可用性。

0
app/__init__.py Normal file
View File

0
app/config.py Normal file
View File

0
app/forms.py Normal file
View File

0
app/models.py Normal file
View File

0
app/routes.py Normal file
View File

0
app/utils.py Normal file
View File

0
requirements.txt Normal file
View File