Skip to content
This repository has been archived by the owner on May 14, 2020. It is now read-only.

Kinto/kinto-pusher

Repository files navigation

Kinto Pusher

Plug Kinto notifications into Pusher.com.

Install

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.

Setup

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

TODO

  • Add view for authenticated channels