57 lines
859 B
Plaintext
57 lines
859 B
Plaintext
|
|
# =============================================================================
|
||
|
|
# 排除构建时不需要的文件
|
||
|
|
# 2026-06-22 创建(防 v0.7.0-alpha 的 .env 覆盖 bug 重演)
|
||
|
|
# =============================================================================
|
||
|
|
|
||
|
|
# 环境变量(防开发 .env 进生产镜像)
|
||
|
|
.env
|
||
|
|
.env.local
|
||
|
|
.env.*
|
||
|
|
*.env
|
||
|
|
|
||
|
|
# Python 缓存
|
||
|
|
__pycache__/
|
||
|
|
*.py[cod]
|
||
|
|
*$py.class
|
||
|
|
*.egg-info/
|
||
|
|
.pytest_cache/
|
||
|
|
.pytest_cache
|
||
|
|
.coverage
|
||
|
|
htmlcov/
|
||
|
|
|
||
|
|
# 测试产物
|
||
|
|
pytest.ini
|
||
|
|
pytest-d1.log
|
||
|
|
pytest-d2.log
|
||
|
|
pytest-d3.log
|
||
|
|
pytest-sms2fa.log
|
||
|
|
pytest_result.txt
|
||
|
|
run_tests.bat
|
||
|
|
run_tests.ps1
|
||
|
|
|
||
|
|
# 本地数据库 / 临时文件
|
||
|
|
*.db
|
||
|
|
*.sqlite
|
||
|
|
*.sqlite3
|
||
|
|
hello.py
|
||
|
|
check_all_tables.py
|
||
|
|
check_db.py
|
||
|
|
migrate_employee_v53.py
|
||
|
|
migrate_v53.py
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# Node / 文档
|
||
|
|
node_modules/
|
||
|
|
*.log
|
||
|
|
logs/
|
||
|
|
|
||
|
|
# Base64 凭据(防 token 泄漏)
|
||
|
|
*.b64
|