├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .pyup.yml ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst └── usage.rst ├── example ├── manage.py └── spaproject │ ├── __init__.py │ ├── settings.py │ ├── static │ ├── badge.png │ └── index.html │ ├── urls.py │ └── wsgi.py ├── setup.cfg ├── setup.py ├── spa ├── __init__.py ├── middleware.py └── storage.py ├── tests ├── __init__.py └── test_spa.py └── travis_pypi_setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/.gitignore -------------------------------------------------------------------------------- /.pyup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/.pyup.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/spaproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/spaproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/example/spaproject/settings.py -------------------------------------------------------------------------------- /example/spaproject/static/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/example/spaproject/static/badge.png -------------------------------------------------------------------------------- /example/spaproject/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/example/spaproject/static/index.html -------------------------------------------------------------------------------- /example/spaproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/example/spaproject/urls.py -------------------------------------------------------------------------------- /example/spaproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/example/spaproject/wsgi.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/setup.py -------------------------------------------------------------------------------- /spa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/spa/__init__.py -------------------------------------------------------------------------------- /spa/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/spa/middleware.py -------------------------------------------------------------------------------- /spa/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/spa/storage.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/test_spa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/tests/test_spa.py -------------------------------------------------------------------------------- /travis_pypi_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metakermit/django-spa/HEAD/travis_pypi_setup.py --------------------------------------------------------------------------------