Plug Kinto notifications into Pusher.com.
pip install kinto-pusher
Depending on your environment, it might be necessary to install the ffi system library with sudo apt-get install libffi-dev
.
In the Kinto-based application settings:
kinto.includes = kinto_pusher
pusher.app_id = <pusher-app-id>
pusher.key = <pusher-key>
pusher.secret = <pusher-secret>
pusher.cluster = eu
kinto.event_listeners = pusher
kinto.event_listeners.pusher.use = kinto_pusher.listener
kinto.event_listeners.pusher.channel = {bucket_id}-{collection_id}-{resource_name}
kinto.event_listeners.pusher.resources = bucket collection group record
kinto.event_listeners.pusher.actions = create update delete
- Add view for authenticated channels