video-shuoshan/.gitignore
seaislee1209 b78a220082
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 2m12s
fix: gitignore 排除了 PNG 资源导致构建失败
- .gitignore 中 *.png 规则误忽略了 web/src/assets/ 和 web/public/ 下的 logo/favicon
- 添加例外规则允许 web 资源目录的 PNG 文件
- 补提交 logo_32/128/512.png + favicon.png
- 审计日志变更详情优化:字段名中文化 + 布尔值显示优化 + 空值兜底

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-16 05:49:21 +08:00

41 lines
587 B
Plaintext

# === Frontend (web/) ===
web/node_modules/
web/dist/
web/tsconfig.tsbuildinfo
# === Backend (Python/Django) ===
backend/venv/
backend/db.sqlite3
backend/test_db.sqlite3
backend/__pycache__/
backend/**/__pycache__/
*.pyc
*.pyo
# === IDE & OS ===
.DS_Store
.vscode/
.idea/
# === Agent/Tool artifacts ===
# .agent-auto/
# .playwright-mcp/
.vite/
# === Test artifacts ===
test-results/
test-screenshots/
# === Logs ===
# logs/
# === Screenshots & prototype images ===
*.png
# Allow web assets and public PNGs
!web/src/assets/*.png
!web/public/*.png
# === Environment ===
.env
.env.*