43 lines
472 B
Plaintext
43 lines
472 B
Plaintext
# Python caches and virtualenvs
|
|
__pycache__/
|
|
*.py[cod]
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.venv/
|
|
env/
|
|
venv/
|
|
|
|
# Runtime state
|
|
data/
|
|
logs/
|
|
/plugins/
|
|
docker-config/
|
|
config/*.toml
|
|
config/*.bak*
|
|
!config/README.md
|
|
|
|
# Frontend local outputs
|
|
dashboard/.vite/
|
|
dashboard/node_modules/
|
|
dashboard/dist-ssr/
|
|
|
|
# Local environment and editor files
|
|
.env
|
|
.env.*
|
|
.idea/
|
|
.DS_Store
|
|
*.local
|
|
|
|
# Local deployment artifacts
|
|
*.log
|
|
*.pem
|
|
*.key
|
|
*.tar
|
|
*.tgz
|
|
*.zip
|
|
acme/
|
|
backups/
|
|
bin/
|
|
_staging/
|