Files
xiaoxia-saas/.dockerignore
T
Xiaoxia AI eb11fe2dab feat(deployment): add Docker and docker-compose configuration
- Create production-ready Dockerfile with health check
- Add docker-compose.yml with PostgreSQL and Redis
- Include all services with proper health checks and dependencies
- Add comprehensive Docker deployment documentation
- Support environment variable configuration
- Include backup/restore commands and monitoring guide
- Add security recommendations and troubleshooting section

Phase 4 Task 31/68 completed
2026-06-17 07:51:55 +08:00

69 lines
503 B
Plaintext

# 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
# Virtual Environment
venv/
ENV/
env/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Environment
.env
.env.local
.env.*.local
# Database
*.db
*.sqlite3
# Logs
logs/
*.log
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
# Docker
.dockerignore
# OS
.DS_Store
Thumbs.db
# Temporary
tmp/
temp/
*.tmp
# Backup
*.bak
*.backup