Skip to content

bogdal/django-gcm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d11f8fc · Sep 13, 2016
Dec 28, 2015
Oct 29, 2015
Sep 13, 2016
Apr 1, 2015
May 27, 2015
Jan 11, 2016
Sep 1, 2014
May 14, 2014
May 28, 2015
Jan 11, 2016
Jan 10, 2016
Jan 10, 2016

Repository files navigation

django-gcm

https://requires.io/github/bogdal/django-gcm/requirements.svg?branch=master

Google Cloud Messaging Server in Django

Quickstart

Install the package via pip:

pip install django-gcm  --process-dependency-links

Add gcm to INSTALLED_APPS in settings.py

Add GCM_APIKEY to settings.py file:

GCM_APIKEY = "<api_key>"

Add gcm urls to urls.py file:

urlpatterns = [
  ...
  url(r'', include('gcm.urls')),
  ...
]

Documentation: https://django-gcm.readthedocs.org

Client

Simple client application you can find here.