templates/blueprints/homeassistant/template.toml
Vyacheslav Scherbinin f4b940cfb8
Home Assistant template (#81)
* feat: homeassistant

* absolute path

* homeassistant port

* Mount config files
2025-05-07 01:09:48 -06:00

50 lines
838 B
TOML

[variables]
main_domain = "${domain}"
[config]
[[config.domains]]
serviceName = "homeassistant"
port = 8123
host = "${main_domain}"
env = []
[[config.mounts]]
filePath = "configuration.yaml"
content = """
# Loads default set of integrations. Do not remove.
default_config:
# Load frontend themes from the themes folder
frontend:
themes: !include_dir_merge_named themes
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
http:
use_x_forwarded_for: true
trusted_proxies:
- 192.168.0.0/16 # Local LAN Subnet
- 172.0.0.0/8 # Docker Subnet
- 10.0.0.0/16 # Docker Swarm Subnet
"""
[[config.mounts]]
filePath = "automations.yaml"
content = """
"""
[[config.mounts]]
filePath = "scripts.yaml"
content = """
"""
[[config.mounts]]
filePath = "scenes.yaml"
content = """
"""