From c0b0a499aef6038d5a546618b6fb652246fe8bb2 Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Mon, 2 Aug 2021 16:21:16 -0400 Subject: [PATCH] init to commit it --- .gitignore | 16 ++++++++++++++++ automations.yaml | 1 + configuration.yaml | 12 ++++++++++++ groups.yaml | 0 scenes.yaml | 0 scripts.yaml | 0 6 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 automations.yaml create mode 100644 configuration.yaml create mode 100644 groups.yaml create mode 100644 scenes.yaml create mode 100644 scripts.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d77a34f --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Everything is ignored +* +# except for these +!*.yaml +!.gitignore +!*.md + +# Ignore folders. +.storage +.cloud +.google.token + +# Ensure these YAML files are ignored, otherwise your secret data/credentials will leak. +ip_bans.yaml +secrets.yaml +known_devices.yaml diff --git a/automations.yaml b/automations.yaml new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/automations.yaml @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/configuration.yaml b/configuration.yaml new file mode 100644 index 0000000..1828512 --- /dev/null +++ b/configuration.yaml @@ -0,0 +1,12 @@ + +# Configure a default setup of Home Assistant (frontend, api, etc) +default_config: + +# Text to speech +tts: + - platform: google_translate + +group: !include groups.yaml +automation: !include automations.yaml +script: !include scripts.yaml +scene: !include scenes.yaml diff --git a/groups.yaml b/groups.yaml new file mode 100644 index 0000000..e69de29 diff --git a/scenes.yaml b/scenes.yaml new file mode 100644 index 0000000..e69de29 diff --git a/scripts.yaml b/scripts.yaml new file mode 100644 index 0000000..e69de29