Files
dsp/.gitignore
T
dsp ac962a91fe DSP 双端短视频平台:Android + Web(Django/DRF + Vue3 + Channels)
- 后端 12 模块:用户/视频/评论/消息/搜索/历史/访客/日志/音乐/通知/审核/创作者
- JWT 双 token + /accounts/refresh 无感续期(双端共用)
- Web 端 Vue3+TS+Vite:沉浸 feed/评论/搜索/私信 WS/上传/通知中心/个人主页
- Android Kotlin+Compose:平台标识头 + 401 单飞刷新
- 部署:docker compose(nginx 网关 SPA+API+WS+媒体),已上线 192.168.5.7:19000
- 测试:pytest 19 用例(含 WS 回归)+ Playwright 冒烟脚本
2026-09-10 20:42:49 +08:00

41 lines
487 B
Plaintext

# ---- 依赖与构建产物 ----
node_modules/
dist/
.vite/
build/
.gradle/
.gradle-dist/
app/build/
# ---- Python ----
.venv/
__pycache__/
*.pyc
.pytest_cache/
test_db.sqlite3
# ---- 运行时数据 ----
backend/media/
*.log
# ---- 本地环境 ----
.env
local.properties
# ---- IDE / 工具 ----
.idea/
.vscode/
.kotlin/
.playwright-mcp/
*.tar.gz
# ---- Android ----
android/.gradle/
android/build/
android/app/build/
android/.kotlin/
android/app/release/
*.apk
*.aab
dsp/.test/