mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-02 01:10:23 +08:00
54 lines
458 B
Plaintext
54 lines
458 B
Plaintext
# Build artifacts
|
|
build/
|
|
target/
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
|
|
# Frontend
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
|
|
# 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/
|