├── .editorconfig ├── .github ├── assets │ └── how-it-works-production.svg └── workflows │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── django_nextjs ├── __init__.py ├── app_settings.py ├── apps.py ├── asgi.py ├── exceptions.py ├── proxy.py ├── render.py ├── templates │ └── django_nextjs │ │ └── document_base.html ├── urls.py ├── utils.py └── views.py ├── pyproject.toml ├── setup.py └── tests ├── __init__.py ├── settings.py ├── templates └── custom_document.html └── test_render.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/assets/how-it-works-production.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/.github/assets/how-it-works-production.svg -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/README.md -------------------------------------------------------------------------------- /django_nextjs/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.3.0" 2 | -------------------------------------------------------------------------------- /django_nextjs/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/django_nextjs/app_settings.py -------------------------------------------------------------------------------- /django_nextjs/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/django_nextjs/apps.py -------------------------------------------------------------------------------- /django_nextjs/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/django_nextjs/asgi.py -------------------------------------------------------------------------------- /django_nextjs/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/django_nextjs/exceptions.py -------------------------------------------------------------------------------- /django_nextjs/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/django_nextjs/proxy.py -------------------------------------------------------------------------------- /django_nextjs/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/django_nextjs/render.py -------------------------------------------------------------------------------- /django_nextjs/templates/django_nextjs/document_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/django_nextjs/templates/django_nextjs/document_base.html -------------------------------------------------------------------------------- /django_nextjs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/django_nextjs/urls.py -------------------------------------------------------------------------------- /django_nextjs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/django_nextjs/utils.py -------------------------------------------------------------------------------- /django_nextjs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/django_nextjs/views.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/templates/custom_document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/tests/templates/custom_document.html -------------------------------------------------------------------------------- /tests/test_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-nextjs/HEAD/tests/test_render.py --------------------------------------------------------------------------------