Files
lotteryServer/.gitignore
2026-09-03 14:31:25 +08:00

70 lines
610 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
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# uv 虚拟环境uv 默认 .venv
.venv/
venv/
ENV/
env/
env.bak/
venv.bak/
# uv 缓存(不需要提交)
.uv/
# 编辑器、IDE
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# 日志
*.log
logs/
# 环境变量文件
.env
.env.local
.env.prod
# 数据库文件
*.sqlite
*.sqlite3
*.db
# 临时文件
tmp/
temp/
*.tmp
# 测试覆盖率
.coverage
htmlcov/
.pytest_cache/
# 打包产物
*.tar.gz
*.whl