mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-02 07:42:28 +08:00
62 lines
572 B
Plaintext
62 lines
572 B
Plaintext
# 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/ |