Files
Aether/.dockerignore

62 lines
572 B
Plaintext
Raw Normal View History

2025-12-10 20:52:44 +08:00
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.venv
.uv/
*.egg-info/
dist/
build/
*.egg
# Frontend
frontend/node_modules/
frontend/.vite/
# frontend/dist/ - 注释掉因为我们需要预构建的dist文件
# Development
.git/
.gitignore
.github/
.env
.env.*
!.env.example
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.mypy_cache/
.ruff_cache/
# Logs
logs/
*.log
# Database
*.db
*.sqlite
*.sqlite3
data/
# Docker
docker-compose.override.yml
Dockerfile.*
# Deployment
deploy/
scripts/