DEPRECATED: @silviolleite has been kind enough to build on this initial implementation and add some excellent functionality. You can find his supported implementation of this project here: https://github.com/silviolleite/django-pwa
Silvio has also published it to PyPI: https://pypi.org/project/django-pwa/
This Django app turns your project into a progressive web app. Navigating to your site on an Android phone will prompt you to add the app to your home screen.
Launching the app from your home screen will display your app without browser chrome. As such, it's critical that your application provides all navigation within the HTML (no reliance on the browser back or forward button).
Progressive Web Apps require HTTPS unless being served from localhost. If you're not already using HTTPS on your site, check out Let's Encrypt and ZeroSSL.
Install from PyPI:
pip install django-progressive-web-app
Add pwa
to your list of INSTALLED_APPS
in settings.py:
INSTALLED_APPS = [
...
'pwa',
...
]
Configure your app name, description, and icons in settings.py:
PWA_APP_NAME = 'My Kickass App'
PWA_APP_DESCRIPTION = "Do kickass things all day long without that pesky browser chrome"
PWA_APP_THEME_COLOR = '#0A0302'
PWA_APP_BACKGROUND_COLOR = '#ffffff'
PWA_APP_DISPLAY = 'standalone'
PWA_APP_START_URL = '/'
PWA_APP_ICONS = [
{
'src': '/static/images/my_app_icon.png',
'sizes': '160x160'
}
]
All settings are optional, and the app will work fine with its internal defaults. Highly recommend setting at least PWA_APP_NAME
and PWA_APP_DESCRIPTION
.
Add the progressive web app URLs to urls.py:
from django.conf.urls import url, include
urlpatterns = [
...
url('', include('pwa.urls')), # You MUST use an empty string as the URL prefix
...
]
Inject the required meta tags in your base.html (or wherever your HTML <head> is defined):
{% load pwa %}
<head>
...
{% progressive_web_app_meta %}
...
</head>
While running the Django test server:
- Verify that
/manifest.json
is being served - Verify that
/serviceworker.js
is being served - Use the Application tab in the Chrome Developer Tools to verify the progressive web app is configured correctly.
- Use the "Add to homescreen" link on the Application Tab to verify you can add the app successfully.
By default, the service worker implemented by this app is empty. To add service worker functionality, you'll want to create a serviceworker.js
or similarly named file, and then point at it using the PWA_SERVICE_WORKER_PATH variable.
PWA_SERVICE_WORKER_PATH = os.path.join(BASE_DIR, 'my_app', 'serviceworker.js')
I welcome your feedback and pull requests. Enjoy!
All files in this repository are distributed under the MIT license.