mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-29 21:03:40 +00:00
Added scripts to install HACS in DevContainer for testing the integration alongside other HACS components. Changes: - scripts/setup: Automatically install HACS and create symlink - scripts/sync-hacs: Sync HACS-installed integrations via symlinks - .gitignore: Ignore custom_components/* except tibber_prices HACS installs to config/custom_components/, symlinks in custom_components/ make integrations visible to Home Assistant. Impact: Developers can test with other integrations. No user changes.
42 lines
583 B
Text
42 lines
583 B
Text
# artifacts
|
|
__pycache__
|
|
.pytest*
|
|
*.egg-info
|
|
*/build/*
|
|
*/dist/*
|
|
.venv
|
|
|
|
|
|
# misc
|
|
.coverage
|
|
.vscode
|
|
coverage.xml
|
|
.ruff_cache
|
|
uv.lock
|
|
|
|
|
|
# Home Assistant configuration
|
|
config/*
|
|
!config/configuration.yaml
|
|
|
|
# HACS and other custom components installed for testing
|
|
# Ignore everything in custom_components/ except tibber_prices
|
|
custom_components/*
|
|
!custom_components/tibber_prices/
|
|
|
|
# Home Assistant database and logs
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.log
|
|
home-assistant.log*
|
|
home-assistant_v2.db*
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Planning documents (work-in-progress)
|
|
planning/
|