mirror of
https://github.com/jorijn/meshcore-stats.git
synced 2026-03-28 17:42:55 +01:00
- Rename to shorter docker-compose.dev.yml - Add docker-compose.override.yml to .gitignore for local customizations - Document override file pattern for device path customization - Update README and CLAUDE.md with new naming convention 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
45 lines
482 B
Plaintext
45 lines
482 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Environment
|
|
.envrc
|
|
.env
|
|
meshcore.conf
|
|
|
|
# Docker local overrides
|
|
docker-compose.override.yml
|
|
|
|
# Data directories (keep structure, ignore content)
|
|
data/snapshots/companion/**/*.json
|
|
data/snapshots/repeater/**/*.json
|
|
data/rrd/*.rrd
|
|
data/state/*
|
|
|
|
# Generated output (except .htaccess)
|
|
out/*
|
|
!out/.htaccess
|
|
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
.direnv |