mirror of
https://github.com/agessaman/meshcore-bot.git
synced 2026-05-26 02:14:07 +00:00
61445b4811
- Added Docker deployment instructions to the README, including steps for creating data directories, updating configuration paths, and starting the application with Docker Compose. - Updated .gitignore to include a new data directory structure, ensuring user-specific configurations, databases, and logs are ignored while maintaining the directory structure.
77 lines
672 B
Plaintext
77 lines
672 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Project specific
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.log
|
|
logs/
|
|
backups/
|
|
*.ini
|
|
config.ini
|
|
config.ini.example
|
|
config.ini.minimal-example
|
|
config.min.ini
|
|
|
|
# Documentation
|
|
docs/
|
|
*.md
|
|
!README.md
|
|
|
|
# Test files
|
|
test_scripts/
|
|
*.test.py
|
|
*_test.py
|
|
|
|
# Development
|
|
dev/
|
|
flake.lock
|
|
flake.nix
|
|
nix/
|
|
|
|
# Service files
|
|
*.service
|
|
*.plist
|
|
*.sh
|
|
!install-service.sh
|
|
!uninstall-service.sh
|
|
|
|
# Website
|
|
website/
|
|
|
|
# MQTT bridge
|
|
mctomqtt.py
|
|
|
|
# Database backups
|
|
backup_database.py
|