67 lines
673 B
Plaintext
67 lines
673 B
Plaintext
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Docker volumes
|
|
prometheus_data/
|
|
grafana_data/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Python cache (if any Python scripts are added later)
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.so
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.cache/
|
|
.mypy_cache/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.pid
|
|
|
|
# Node modules (if any Node.js tools are added later)
|
|
node_modules/
|
|
|
|
# Build artifacts
|
|
*.tar.gz
|
|
dist/
|
|
build/
|
|
|
|
# Bots
|
|
/bots/*
|
|
!/bots/.gitkeep |