完成一个基本的弹幕功能

This commit is contained in:
2025-12-31 09:01:57 +08:00
commit 81d0dd0f07
28 changed files with 2386 additions and 0 deletions

44
.gitignore vendored Normal file
View File

@@ -0,0 +1,44 @@
# Django项目常见的.gitignore配置
# 虚拟环境
venv/
env/
ENV/
.venv/
# Python编译文件
__pycache__/
*.py[cod]
*$py.class
# Django相关
local_settings.py
*.sqlite3
*.db
*.log
media/
staticfiles/
.env
# 测试相关
pytest_cache/
.tox/
.coverage
htmlcov/
# IDE相关
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
# 脚本文件(根据项目情况可调整)
*.sh
*.bat
# 其他
.cache/
*.egg-info/
MANIFEST