-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
default_config.yaml
29 lines (25 loc) · 1 KB
/
default_config.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
# Default configuration file used if the application is run outside of an HA addon (for instance as a standalone container).
# If you want to customize the settings, copy this file and set you own values
# Each option can be overridden by settings environment variables using __ as delimiter for nesting the object.
# For example to set system.log_level to DEBUG use the env variable SYSTEM__LOG_LEVEL=DEBUG
# By default no doorbells are defined
# For a full list of options, have a look at the docs
doorbells: []
# Uncomment the following lines and define each doorbell by repeating the example config:
# - name: "Front porch"
# ip: 192.168.0.1
# port: 8000
# username: admin
# password: password
# Define the following options to enable the MQTT integration
# mqtt:
# host: localhost
# # Optionals settings:
# port: 1883
# ssl: <boolean> # Set to true to enable SSL
# username: <user>
# password: <password>
# Configure general system options
system:
log_level: INFO
sdk_log_level: NONE