Files
smart-project-pricing/.gitignore
2026-01-31 21:33:06 +08:00

87 lines
974 B
Plaintext

# 智能项目定价模型 - Git 忽略配置
# ============ 环境配置文件(敏感信息)============
.env
.env.*
!.env.example
!env.example
!env.dev.example
# ============ Python ============
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual Environment
venv/
ENV/
env/
.venv/
# pytest
.pytest_cache/
.coverage
htmlcov/
# mypy
.mypy_cache/
# ============ Node.js ============
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.pnpm-store/
# Build output
dist/
dist-ssr/
*.local
# ============ IDE ============
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
# ============ Docker ============
# 数据卷不提交
data/
# ============ 日志 ============
*.log
logs/
# ============ 临时文件 ============
tmp/
temp/
*.tmp
*.temp
# ============ SSL 证书 ============
ssl/
*.pem
*.key
*.crt