8000 GitHub - kelf47/django-fcm: Django FCM provides firebase cloud messaging support for django apps
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

kelf47/django-fcm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-fcm

Firebase 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 FCM_APIKEY to settings.py file:

FCM_APIKEY = "<api_key>"

Add fcm urls to urls.py file:

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

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

About

Django FCM provides firebase cloud messaging support for django apps

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.6%
  • Shell 0.4%
0