-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.yaml
executable file
·211 lines (179 loc) · 4.67 KB
/
configuration.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
homeassistant:
# Name of the location where Home Assistant is running
name: Home
# Location required to calculate the time the sun rises and sets
latitude: !secret home_lat
longitude: !secret home_long
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: 329
# metric for Metric, imperial for Imperial
unit_system: imperial
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
time_zone: America/Chicago
customize: !include customize.yaml
external_url: !secret external_url
internal_url: "http://10.0.0.135:8123"
# add this part
auth_providers:
- type: homeassistant
- type: trusted_networks
trusted_networks:
- 10.0.0.0/24
- 10.0.0.135
############################
# TURN ON CORE STUFF #
############################
logger:
default: info
# logs:
# homeassistant.components.travisci: debug
# homeassistant.components.sensor: debug
# TravisPy: debug
# homeassistant.components.ping: debug
# pynetgear: debug
# homeassistant.components.netgear.device_tracker: debug
# pyhap: debug
# pyhap.accessory_driver: debug
# wink: debug
# pywink.api: debug
# pubnub: debug
# pyecobee: debug
# homeassistant.components.ecobee: debug
# homeassistant.components.mobile_app: debug
# Setup DEFAULT_CONFIG
default_config:
# Show links to resources in log and frontend
#introduction:
# Enables the frontend
frontend:
themes: !include themes.yaml
# Enables configuration UI
config:
http:
updater:
# Discover some devices automatically
discovery:
system_health:
conversation:
history:
recorder:
db_url: !secret recorder_db
purge_keep_days: 14
sun:
#############################
# INCLUDES #
#############################
group: !include groups.yaml
#notify: !include notify.yaml
automation: !include automations.yaml
script: !include_dir_merge_named scripts/
sensor: !include sensors.yaml
input_select: !include misc/input_select.yaml
input_boolean: !include misc/input_boolean.yaml
input_text: !include misc/input_text.yaml
scene: !include_dir_merge_list scenes/
cloud: !include cloud.yaml
light: !include light.yaml
lock: !include lock.yaml
logbook: !include logbook.yaml
switch: !include switches.yaml
cover: !include covers.yaml
binary_sensor: !include binary_sensors.yaml
alert: !include alerts.yaml
timer: !include timer.yaml
#panel_custom: !include panel_custom.yaml
remote: !include remote.yaml
ios: !include ios.yaml
camera: !include camera.yaml
device_tracker: !include device_tracker.yaml
influxdb: !include influxdb.yaml
#tplink: !include tplink.yaml
homekit: !include homekit.yaml
shell_command: !include shell_command.yaml
#############################
# Enable some randoms #
#############################
person:
ecobee:
api_key: !secret ecobee_api_key
ffmpeg:
ifttt:
key: !secret ifttt_key
# speedtestdotnet:
# server_id: 8088
# scan_interval:
# minutes: 360
# manual: true
# zone:
# - name: Home
# latitude: !secret home_lat
# longitude: !secret home_long
# radius: 150
# icon: mdi:home
# - name: LPD
# latitude: !secret lpd_lat
# longitude: !secret lpd_long
# radius: 250
# icon: mdi:city
# - name: Continuous
# latitude: !secret cc_lat
# longitude: !secret cc_long
# radius: 250
# icon: mdi:city
tts:
- platform: google_translate
service_name: google_say
cache_dir: /tmp/tts
time_memory: 300
base_url: http://10.0.0.135:8123
- platform: marytts
host: '10.0.0.135'
port: 59125
codec: 'WAVE_FILE'
voice: 'cmu-slt-hsmm'
language: 'en_US'
# mqtt:
# broker: !secret mqtt_broker
# username: !secret mqtt_username
# password: !secret mqtt_password
# discovery: true
owntracks:
max_gps_accuracy: 200
waypoints: true
waypoint_whitelist:
- pete
- jessi
- petes_iphone
- jessis_iphone
# google:
# client_id: !secret google_client_id
# client_secret: !secret google_client_secret
# track_new_calendar: false
lutron_caseta:
host: 10.0.0.80
keyfile: caseta.key
certfile: caseta.crt
ca_certs: caseta-bridge.crt
# duckdns:
# domain: !secret duckdns_subdomain
# access_token: !secret duckdns_token
# media_player:
# - platform: plex
# - platform: alexa
# email: !secret amazon_user
# password: !secret amazon_pass
# url: amazon.com
# - platform: samsungtv
# name: Living Room TV
# mac: 68:27:37:55:85:6E
# host: 10.0.0.111
# port: 8001
#############################
# Disable some randoms #
#############################
#usps:
# username: !secret usps_user
# password: !secret usps_pass
########################
# Run CI for latest HA #
########################