django-pwa
django-pwa copied to clipboard
Looks like an app, feels like an app, but IS NOT an app.
We do not support Django < 1.10 (the tests will not run because of an import of a package that does not exist prior to Django 1.10), so we should...
This avoid a deprecation warning: django.conf.urls.url is an alias for django.urls.re_path but will be removed in Django 4.0. This method was only added in Django 2.0, so we have to...
PWA_APP_SHORTNAME & PWA_APP_NAME both default to name and not short_name distinction. https://github.com/silviolleite/django-pwa/blob/0ff60e7afaf23d6883d593554b93e54bb56e41fe/pwa/templates/manifest.json#L4
`pwa/urls.py` uses the deprecated `url()` function instead of its newer replacement: ``` RemovedInDjango40Warning: django.conf.urls.url() is deprecated in favor of django.urls.re_path() ```
Same thing as #63, but changed line 39 too.
Include crossorigin to prevent 401 when pwa is behind sign in
Is it possible to add settings so you can still use the Debug screen in dev mode ?
… for showing Install app prompt
Hi, my Django PWA is giving errors and I think it is related to the fact that I am serving all my static files from AWS S3. How do make...
Package installs tests to "site-packages/tests" directory, should be moved or removed? ``` $ venv/bin/pip install django-pwa $ venv/bin/pip uninstall django-pwa Found existing installation: django-pwa 1.0.10 Uninstalling django-pwa-1.0.10: Would remove: .../venv/lib/python3.9/site-packages/django_pwa-1.0.10.dist-info/*...