This is the molo.pwa project.
Project description
An implementation of pwa as a Molo plugin
Installation:
pip install molo.pwa
Django setup:
INSTALLED_APPS = [
...
'molo.pwa',
'fcm_django',
...
]
Configure serviceworker path, app name, description, icons, and FCM:
PWA_SERVICE_WORKER_PATH = join(
PROJECT_ROOT, 'your_app', 'templates', SITE_LAYOUT_BASE, 'serviceworker.js')
PWA_NAME = 'App Name'
PWA_DESCRIPTION = 'App Description'
PWA_THEME_COLOR = '#fff'
PWA_DISPLAY = 'standalone'
PWA_START_URL = '/'
PWA_ICONS = [
{
'src': '/static/img/appicons/app_icon.png',
'sizes': '160x160',
"type": "image/png"
}
]
PWA_FCM_API_KEY = 'FCM API KEY'
PWA_FCM_MSGSENDER_ID = 'FCM MESSAGE SENDER ID'
FCM_DJANGO_SETTINGS = {
"FCM_SERVER_KEY": 'FCM SERVER KEY',
"ONE_DEVICE_PER_USER": True,
"DELETE_INACTIVE_DEVICES": False,
}
In your urls.py:
urlpatterns = [
url(r'', include('molo.pwa.urls')),
...
...
]
In your base.html:
{% load molo_pwa %}
<head>
...
{% molo_pwa_meta %}
...
</head>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
molo.pwa-10.1.1.tar.gz
(9.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
molo.pwa-10.1.1-py3-none-any.whl
(12.8 kB
view details)
File details
Details for the file molo.pwa-10.1.1.tar.gz.
File metadata
- Download URL: molo.pwa-10.1.1.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bc121812f6a735637bb4275841fb8c8c36a94d707a51ce62e12084a6017fed4
|
|
| MD5 |
12d2d7d7d6f5679e5a39da9d0438490f
|
|
| BLAKE2b-256 |
91954d658c051b40ef8066742df323abf31f9c97deb52599a7219da23a1c4fef
|
File details
Details for the file molo.pwa-10.1.1-py3-none-any.whl.
File metadata
- Download URL: molo.pwa-10.1.1-py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7211572c99cc87d66b95d473f22b9879c6eb59bcc56f0557d9dd34e9f22bafcc
|
|
| MD5 |
ca40cd38c4591cfc5835a4b1381cdcee
|
|
| BLAKE2b-256 |
e8f9e8aff22524b63795883b4e353bf03b4e80f4aa0a0d0be3b9a6e1e61e3321
|