-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[hassos migration] secrets, config, readme
- Update stub secrets - Update main configuration file - Update readme template
- Loading branch information
Showing
4 changed files
with
74 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
--- | ||
# Example Secrets | ||
# | ||
http_trusted_proxies: | ||
- 127.0.0.1 | ||
- 10.10.10.10 | ||
- ::1 | ||
|
||
dreamscreen_family_room: 10.10.10.10 | ||
|
||
canon_host: 10.10.10.10 | ||
|
@@ -16,12 +11,6 @@ influxdb_host: 10.10.10.10 | |
influxdb_token: api_token | ||
influxdb_organization: ord_id | ||
|
||
media_dirs_sounds: www/sounds | ||
|
||
notify_join_api_key: api_key | ||
|
||
recorder_db_url: mysql://username:[email protected]/database | ||
|
||
smart_display_api_brightness: http://10.10.10.10:8080/api/brightness | ||
smart_display_api_monitor: http://10.10.10.10:8080/api/monitor | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,61 @@ | ||
--- | ||
# Home Assistant configuration! | ||
# | ||
# This system is very modular and very differently structured | ||
# compared to other configurations found online. | ||
# This system is modular and differently structured compared to other | ||
# configurations found online. | ||
# | ||
# Basically, each file does 1 thing only (for the most part). | ||
# Each file does 1 thing only, for the most part. Simple one-line integration | ||
# files will go here whereas larger integration files will go into packages. | ||
# | ||
# The configuration.yaml is only used to bootstrap the system. | ||
# | ||
homeassistant: | ||
# Load packages | ||
packages: !include_dir_named integrations | ||
packages: !include_dir_named packages | ||
|
||
# Specify auth providers | ||
auth_providers: | ||
- type: homeassistant | ||
# # Allows customizing individual entities | ||
# customize: !include_dir_merge_named customize/entity | ||
|
||
media_dirs: | ||
sounds: !secret media_dirs_sounds | ||
# # Allows customizing all entities in a domain | ||
# customize_domain: !include_dir_merge_named customize/domain | ||
|
||
# # Allows customizing entities based on a matching pattern | ||
# customize_glob: !include_dir_merge_named customize/glob | ||
|
||
# Loads default set of integrations. Do not remove. | ||
default_config: | ||
|
||
# Load frontend themes from the themes folder | ||
frontend: | ||
# We can define additional/custom themes for the frontend here. | ||
themes: !include_dir_merge_named themes | ||
extra_module_url: | ||
# https://github.com/thomasloven/lovelace-card-mod | ||
- /hacsfiles/lovelace-card-mod/card-mod.js | ||
|
||
automation: !include automations.yaml | ||
script: !include scripts.yaml | ||
script split: !include_dir_merge_named scripts | ||
scene: !include scenes.yaml | ||
|
||
# Entities | ||
group: !include_dir_merge_named entities/group | ||
media_player: !include_dir_list entities/media_player | ||
mqtt: | ||
binary_sensor: !include_dir_list entities/mqtt/binary_sensor | ||
sensor: !include_dir_list entities/mqtt/sensor | ||
notify: !include_dir_list entities/notify | ||
proximity: !include_dir_merge_named entities/proximity | ||
rest_command: !include_dir_merge_named entities/rest_command | ||
sensor: !include_dir_list entities/sensor | ||
shell_command: !include_dir_merge_named entities/shell_command | ||
switch: !include_dir_list entities/switch | ||
template: !include_dir_list entities/template | ||
tts: !include_dir_list entities/tts | ||
utility_meter: !include_dir_merge_named entities/utility_meter | ||
|
||
wake_on_lan: | ||
|
||
# Panels | ||
# panel_custom: !include_dir_list panel/custom | ||
# panel_iframe: !include_dir_merge_named panel/iframe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.