Skip to content

jesperrix/django-fcm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-fcm

Firebase Cloud Messaging Server in Django

Quickstart

Install the package via pip:

pip install django-fcm  --process-dependency-links

Add fcm to INSTALLED_APPS in settings.py

INSTALLED_APPS = [
    ....,
    fcm
]

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

Packages

No packages published

Languages

  • Python 100.0%