Files
xiaoxia-saas/.gitignore
T
Xiaoxia AI 749ef7f55a
Tests / test (push) Failing after 30s
Tests / lint (push) Failing after 31s
chore: add production environment configuration system
2026-06-15 18:32:05 +08:00

40 lines
469 B
Plaintext

# Node / frontend
node_modules/
.next/
out/
dist/
coverage/
# Python / backend
.venv/
venv/
__pycache__/
.pytest_cache/
.mypy_cache/
.pytype/
ruff_cache/
*.pyc
# Env / secrets
.env
.env.local
.env.development
.env.production # 生产环境配置不提交(包含敏感信息)
!.env.example
!.env.staging # staging 配置可以提交
# OS / editor
.DS_Store
Thumbs.db
.vscode/
.idea/
# Logs / temp
*.log
tmp/
temp/
# Build / runtime artifacts
build/
.runtime/