-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworker-bunch.yaml.sample
34 lines (28 loc) · 1.09 KB
/
worker-bunch.yaml.sample
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
logging:
file: "./__test__/mqtt-logs.log"
level: "debug" # debug, info, warning, error
print_console: true
skip_times: false
module_levels:
"schedule": "info"
service:
# locale: "de_DE.UTF8"
data_directory: "./__data__"
mqtt_broker:
host: "<host>"
port: 1883
protocol: 4 # 3==MQTTv31 (default), 4==MQTTv311, 5==default/MQTTv5,
# database_connections:
# main-database:
# host: "<host>"
# port: 5435
# user: "<schema user>"
# password: "<password>"
# database: "<database>"
worker_instances:
DummyWorker: "app.dummy_worker.DummyWorker"
worker_settings:
DummyWorker:
mqtt_last_will: "last_will!"
mqtt_topic_out: "test/worker-bunch/dummy"
mqtt_topics_in: ["smarthome/device1/#", "smarthome/device2/state"]