Organizes 11 projects for Cerbo GX/Venus OS into a single repository: - axiom-nmea: Raymarine LightHouse protocol decoder - dbus-generator-ramp: Generator current ramp controller - dbus-lightning: Blitzortung lightning monitor - dbus-meteoblue-forecast: Meteoblue weather forecast - dbus-no-foreign-land: noforeignland.com tracking - dbus-tides: Tide prediction from depth + harmonics - dbus-vrm-history: VRM cloud history proxy - dbus-windy-station: Windy.com weather upload - mfd-custom-app: MFD app deployment package - venus-html5-app: Custom Victron HTML5 app fork - watermaker: Watermaker PLC control UI Adds root README, .gitignore, project template, and per-project .gitignore files. Sensitive config files excluded via .gitignore with .example templates provided. Made-with: Cursor
54 lines
686 B
Plaintext
54 lines
686 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg
|
|
*.egg-info/
|
|
venv/
|
|
.venv/
|
|
|
|
# Node
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
*.tgz
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Venus OS runtime (created by install.sh on device)
|
|
ext/velib_python
|
|
|
|
# Build artifacts
|
|
*.tar.gz
|
|
*.sha256
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment / secrets
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Sensitive config files (use *.example.json templates instead)
|
|
dbus-meteoblue-forecast/forecast_config.json
|
|
dbus-windy-station/station_config.json
|
|
|
|
# Databases
|
|
*.db
|
|
|
|
# Design reference assets (kept locally, not in repo)
|
|
inspiration assets/
|