Files
xingrin/backend/.gitignore
2025-12-12 18:04:57 +08:00

52 lines
552 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
# 虚拟环境
venv/
env/
ENV/
# Django
*.log
db.sqlite3
db.sqlite3-journal
/media
/staticfiles
# 运行时文件Flower、PID
/var/*
!/var/.gitkeep
flower.db
pids/
script/dev/.pids/
# 扫描结果和日志(后端数据)
/results/*
!/results/.gitkeep
/logs/*
!/logs/.gitkeep
# 环境变量(敏感信息)
.env
.env.development
.env.production
.env.staging
# 只提交模板文件:.env.*.example
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# macOS
.DS_Store