forked from platypush/platypush
bd5c80175f
- More consistent naming for many methods, plus added a more extensive doc. - Refactored the entry points for the daemon and the pusher into two classes, easier to encapsulate and wrap into tests. - Removed the local backend - managing the concurrency of two processes reading and writing on the same socket at the same time was too much, and its utility outside of the tests (which can have mock backends as well) is quite modest. - Managing stop events on the bus. Still some work to do tho. - Fixed several bugs.
34 lines
899 B
YAML
34 lines
899 B
YAML
backend.kafka:
|
|
disabled: False
|
|
pusher: True # The pusher executable will use this backend by default
|
|
logging: DEBUG
|
|
server: your_server:9092
|
|
topic: platypush
|
|
|
|
backend.pushbullet:
|
|
disabled: True
|
|
logging: DEBUG
|
|
token: your_pushbullet_token_here
|
|
device: your_pushbullet_virtual_device_name
|
|
|
|
# device_id: <your_device_id> (default: current hostname)
|
|
# debug: True (default: False)
|
|
|
|
music.mpd:
|
|
host: localhost
|
|
port: 6600
|
|
|
|
light.hue:
|
|
bridge: hue # Bridge IP or hostname
|
|
# lights: # Default lights you want to manage
|
|
# - Living Room Ground Right
|
|
# - Living Room Ground Left
|
|
# - Hue bloom
|
|
# - Kitchen Lampm
|
|
# - Living room ceiling right
|
|
# - Living room ceiling left
|
|
# - Kitchen LED Strip
|
|
# - Kitchen Table LED Strip
|
|
groups: # Default groups you want to manage
|
|
- Living Room
|
|
|