-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappdaemon.yaml
67 lines (66 loc) · 2.07 KB
/
appdaemon.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
## Appdaemon 4 config file
secrets: /conf/secrets.yaml
logs:
main_log:
filename: /logs/appdaemon.log
log_size: 50000
access_log:
filename: /logs/access.log
log_size: 50000
error_log:
filename: /logs/error.log
log_size: 50000
filter_threshold: 2
diag_log:
filename: /logs/diag.log
log_generations: 5
log_size: 50000
# format: "{asctime} {levelname:<8} {appname:<10}: {message}"
http:
url: http://192.168.0.100:5050
# password: !secret appdaemone_password
# dash_ssl_certificate: /etc/letsencrypt/live/somehost/fullchain.pem
# dash_ssl_key: /etc/letsencrypt/live/somehost/privkey.pem
api:
admin:
title: Appdaemon Admin
stats_update: realtime #batch
appdaemon:
latitude: !secret latitude
longitude: !secret longitude
elevation: !secret elevation
time_zone: !secret timezone
logfile: STDOUT
errorfile: STDERR
threads: 10
# api_port: 5000
app_dir: /conf/appdaemon
api_key: !secret appdaemon_api_key
cert_verify: False
plugins:
HASS:
type: hass
ha_url: "http://192.168.0.100:8123"
token: !secret long_lived_access_token_AppDaemon_1
# api_port: ????
app_init_delay: 95 # how long to wait before initializing apps. This could allow device trackers (home occupancy), z-wave network, etc. to start.
namespace: default
# plugin_startup_conditions: # Is this the correct level of indentation??
# event: {event_type: zwave.network_ready}
MQTT:
client_user: !secret hass_moquitto_user
client_password: !secret hass_moquitto_pass
type: mqtt
client_id: "appdaemon"
client_host: 127.0.0.1
# client_topics: "#" # Can set to "NONE", this allows specifying within an app.
birth_topic: appdaemon/birth
birth_payload: "AppDaemon MQTT is live"
will_topic: appdaemon/death
will_payload: "Appdaemon MQTT unexpectedly disconnected"
shutdown_payload: "Appdaemon MQTT has shut down"
namespace: mqtt
hadashboard:
dashboard_dir: /conf/appdaemon/dashboards
dash_url: "http://192.168.0.100:5050"
always_compile: 1