Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 648 Bytes

README.rst

File metadata and controls

40 lines (24 loc) · 648 Bytes

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