https://github.com/bambier/django-simple-pwa
PWA is a simple Django app to develope and deploy a Progressive Web Application.
https://github.com/bambier/django-simple-pwa
djnago progressive-web-application pwa
Last synced: about 2 months ago
JSON representation
PWA is a simple Django app to develope and deploy a Progressive Web Application.
- Host: GitHub
- URL: https://github.com/bambier/django-simple-pwa
- Owner: bambier
- License: mit
- Created: 2021-10-23T14:59:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-06T14:55:46.000Z (11 months ago)
- Last Synced: 2025-03-25T06:33:50.866Z (2 months ago)
- Topics: djnago, progressive-web-application, pwa
- Language: Python
- Homepage: https://django-simple-pwa.readthedocs.io/fa/latest/
- Size: 1.2 MB
- Stars: 15
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
=====
PWA
=====


PWA
###PWA is a simple Django app to develop and deploy a Progressive Web Application.
Detailed documentation is in the "docs" directory.
Quick start
-----------1. Add "pwa" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
...,
'pwa',
]2. Include the pwa URLconf in your project urls.py like this::
path('', include('pwa.urls')),
3. Run ``python manage.py collectstatic`` to get the PWA static files.
4. Load pwa & its meta files in index HTML file like as::
{% load pwa %}
{% pwa_meta_data %}
{% pwa_meta_script %}5. Start the development server on HTTPS or localhost to see installable app.
github: https://github.com/bambier/django-simple-pwa
documents: https://django-simple-pwa.readthedocs.io/fa/latest/
pypi: https://pypi.org/project/django-simple-pwa/