Skip to main content

Serve SPAs with Django

Project description

Django serve SPA

Serve SPAs with Django

Quick start

pip install django-serve-spa

Build your SPA and copy the contents of the build into SPA_ROOT (e.g. path/to/django/spa/).

# settings.py
SPA_ROOT = BASE_DIR / 'spa'  # where the built SPA code will live
SPA_URL = ''  # To serve from /

# urls.py
from kaos_spa import settings as spa_settings

urlpatterns += [
    path(spa_settings.SPA_URL, include('kaos_spa.urls')),
]

Runserver, and visit SPA_URL (/ by default). Your SPA will show up.

Notes

django-serve-spa is meant to be used for development and isn't recommended for production use. For production, serve the SPA on its own using tools like npm serve.

django-serve-spa is mostly tested with create-react-app apps, but in theory should work with any SPA.

Utility scripts

django-serve-spa comes bundled with some utility scripts that makes building and copying your SPA project much more convenient.

build-spa

Build your SPA and put it in your django project.

Set the following environment variables

# required
SPA_SRC_DIR=/path/to/your/spa/
SPA_IN_DJANGO_DIR=/path/to/your/django/project/spa/  # what the SPA_ROOT django setting refers to

# optional
SPA_URL  # If you are not serving on /
SPA_BUILD_CMD="npm run build"
SPA_BUILD_DIR_PATH='build/'  # Where the build command builds the app in its src directory

run

build-spa

It'll build your SPA and put it in the right folder in your django project.

cm-spa-build

Commits the new build into Git with commit message from arg. If no arg is supplied, commit message defaults to "New SPA build".

Set the following environment variables

# required
SPA_IN_DJANGO_DIR=/path/to/your/django/project/spa/  # what the SPA_ROOT django setting refers to

run

cm-spa-build

Development and Testing

IDE Setup

Add the example directory to the PYTHONPATH in your IDE to avoid seeing import warnings in the tests modules. If you are using PyCharm, this is already set up.

Running the Tests

Install requirements

pip install -r requirements.txt

For local environment

pytest

For all supported environments

tox

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-serve-spa-0.1.0rc1.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

django_serve_spa-0.1.0rc1-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file django-serve-spa-0.1.0rc1.tar.gz.

File metadata

  • Download URL: django-serve-spa-0.1.0rc1.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.7

File hashes

Hashes for django-serve-spa-0.1.0rc1.tar.gz
Algorithm Hash digest
SHA256 19badd358d884b3684340242ef8abdbbd0ee3c74423050f912305d6e92e4a033
MD5 409ba8d421d8df44d1a52dd94fa3b088
BLAKE2b-256 e76f821fffe57559ae752054f2006afc7e0c907b37ac9b0c27542c12dd759b79

See more details on using hashes here.

File details

Details for the file django_serve_spa-0.1.0rc1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_serve_spa-0.1.0rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 b1379629e7128529ca964de08413db3746e711ea4ec3f91599f7b36001b920a9
MD5 dd356ca9661fe74f070e1650d70b925a
BLAKE2b-256 47f5cdb6124154cfffbe8be8f0250a7c0cf0ab7452499b1e2466349071d589c6

See more details on using hashes here.

Supported by

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