Skip to main content

A Django app to include a manifest.json and Service Worker instance to enable progressive web app behavior

Project description

django-pwa
==========

|Build Status| |Maintainability| |codecov| |PyPI - Downloads| |PyPI -
Downloads|

This Django app turns your project into a `progressive web
app <https://developers.google.com/web/progressive-web-apps/>`__.
Navigating to your site on an Android phone will prompt you to add the
app to your home screen.

.. figure:: https://github.com/silviolleite/django-pwa/raw/master/images/screenshot1.png
:alt: Prompt for install

Prompt for install

Launching the app from your home screen will display your app `without
browser
chrome <https://github.com/silviolleite/django-pwa/raw/master/images/screenshot2.png>`__.
As such, it’s critical that your application provides all navigation
within the HTML (no reliance on the browser back or forward button).

Requirements
============

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 <https://letsencrypt.org/>`__ and
`ZeroSSL <https://zerossl.com/>`__.

Installation
============

Install from PyPI:

::

pip install django-pwa

Configuration
=============

Add ``pwa`` to your list of ``INSTALLED_APPS`` in settings.py:

.. code:: python

INSTALLED_APPS = [
...
'pwa',
...
]

Configure your app name, description, icons and splash screen images in
settings.py:

.. code:: python


PWA_APP_NAME = 'My App'
PWA_APP_DESCRIPTION = "My app description"
PWA_APP_THEME_COLOR = '#0A0302'
PWA_APP_BACKGROUND_COLOR = '#ffffff'
PWA_APP_DISPLAY = 'standalone'
PWA_APP_ORIENTATION = 'any'
PWA_APP_START_URL = '/'
PWA_APP_ICONS = [
{
'src': '/static/images/my_app_icon.png',
'sizes': '160x160'
}
]
PWA_APP_SPLASH_SCREEN = [
{
'src': '/static/images/icons/splash-640x1136.png',
'media': '(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)'
}
]
PWA_APP_DIR = 'ltr'
PWA_APP_LANG = 'en-US'

All settings are optional, and the app will work fine with its internal
defaults. Highly recommend setting at least ``PWA_APP_NAME``,
``PWA_APP_DESCRIPTION``, ``PWA_APP_ICONS`` and
``PWA_APP_SPLASH_SCREEN``.

Add the progressive web app URLs to urls.py:

.. code:: python

from django.urls import path, include

urlpatterns = [
...
path('', 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):

.. code:: html

{% load pwa %}

<head>
...
{% progressive_web_app_meta %}
...
</head>

Troubleshooting
===============

While running the Django test server:

1. Verify that ``/manifest.json`` is being served
2. Verify that ``/serviceworker.js`` is being served
3. Verify that ``/offline`` is being served
4. Use the Application tab in the Chrome Developer Tools to verify the
progressive web app is configured correctly.
5. Use the “Add to homescreen” link on the Application Tab to verify you
can add the app successfully.

The Service Worker
==================

By default, the service worker implemented by this app is:

.. code:: js

// Base Service Worker implementation. To use your own Service Worker, set the PWA_SERVICE_WORKER_PATH variable in settings.py

var staticCacheName = "django-pwa-v" + new Date().getTime();
var filesToCache = [
'/offline',
'/css/django-pwa-app.css',
'/images/icons/icon-72x72.png',
'/images/icons/icon-96x96.png',
'/images/icons/icon-128x128.png',
'/images/icons/icon-144x144.png',
'/images/icons/icon-152x152.png',
'/images/icons/icon-192x192.png',
'/images/icons/icon-384x384.png',
'/images/icons/icon-512x512.png',
'/static/images/icons/splash-640x1136.png',
'/static/images/icons/splash-750x1334.png',
'/static/images/icons/splash-1242x2208.png',
'/static/images/icons/splash-1125x2436.png',
'/static/images/icons/splash-828x1792.png',
'/static/images/icons/splash-1242x2688.png',
'/static/images/icons/splash-1536x2048.png',
'/static/images/icons/splash-1668x2224.png',
'/static/images/icons/splash-1668x2388.png',
'/static/images/icons/splash-2048x2732.png'
];

// Cache on install
self.addEventListener("install", event => {
this.skipWaiting();
event.waitUntil(
caches.open(staticCacheName)
.then(cache => {
return cache.addAll(filesToCache);
})
)
});

// Clear cache on activate
self.addEventListener('activate', event => {
event.waitUntil(
caches.keys().then(cacheNames => {
return Promise.all(
cacheNames
.filter(cacheName => (cacheName.startsWith("django-pwa-")))
.filter(cacheName => (cacheName !== staticCacheName))
.map(cacheName => caches.delete(cacheName))
);
})
);
});

// Serve from Cache
self.addEventListener("fetch", event => {
event.respondWith(
caches.match(event.request)
.then(response => {
return response || fetch(event.request);
})
.catch(() => {
return caches.match('offline');
})
)
});

Adding Your Own Service Worker
==============================

To add service worker functionality, you’ll want to create a
``serviceworker.js`` or similarly named template in a template
directory, and then point at it using the PWA_SERVICE_WORKER_PATH
variable (PWA_APP_FETCH_URL is passed through).

.. code:: python

PWA_SERVICE_WORKER_PATH = 'my_app/serviceworker.js'

The offline view
================

By default, the offline view is implemented in
``templates/offline.html`` You can overwrite it in a template directory
if you continue using the default ``serviceworker.js``.

Feedback
========

I welcome your feedback and pull requests. Enjoy!

License
=======

All files in this repository are distributed under the MIT license.

.. |Build Status| image:: https://travis-ci.org/silviolleite/django-pwa.svg
:target: https://travis-ci.org/silviolleite/django-pwa
.. |Maintainability| image:: https://api.codeclimate.com/v1/badges/246542ea921058c4f76f/maintainability
:target: https://codeclimate.com/github/silviolleite/django-pwa/maintainability
.. |codecov| image:: https://codecov.io/gh/silviolleite/django-pwa/branch/master/graph/badge.svg
:target: https://codecov.io/gh/silviolleite/django-pwa
.. |PyPI - Downloads| image:: https://img.shields.io/pypi/dm/django-pwa.svg
:target: https://pypi.org/project/django-pwa/
.. |PyPI - Downloads| image:: https://img.shields.io/pypi/v/django-pwa.svg
:target: https://pypi.org/project/django-pwa


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-pwa-1.0.2.tar.gz (336.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_pwa-1.0.2-py3-none-any.whl (343.3 kB view details)

Uploaded Python 3

File details

Details for the file django-pwa-1.0.2.tar.gz.

File metadata

  • Download URL: django-pwa-1.0.2.tar.gz
  • Upload date:
  • Size: 336.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0

File hashes

Hashes for django-pwa-1.0.2.tar.gz
Algorithm Hash digest
SHA256 ec1cf9ae9766b41f4a91d619c04f99a1afb36982527f59b68eaf2bbf36b055a1
MD5 45172963e758dd1c8926a87095f22e3b
BLAKE2b-256 f35fe1e7bc197454bdfb79ea12139158e2b17e9e445dd331f6607d238746dcf8

See more details on using hashes here.

File details

Details for the file django_pwa-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: django_pwa-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 343.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0

File hashes

Hashes for django_pwa-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e25b3a5a6dedd739d61e9360a7e6ca788319873390f7187d8ae47dc8394448b7
MD5 fca27d4872eff2fe2b2999d639d18a9f
BLAKE2b-256 37e13d54444deed9261a627005b3af163e6f555681f9c58a14b7f2a4283932f2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page