Files
Aether/.dockerignore
2025-12-10 20:52:44 +08:00

62 lines
572 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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/