Skip to main content

Script to set up a Django-React hybrid project with Tailwind CSS and Vite

Project description

Hybrid Django-React-Tailwind-Vite Setup

PyPI Downloads

Script to bootstrap hybrid django-react projects set up inspired by

  • The hybrid Python/Django/React Architecture as described by Cory Zue in this article
  • Session based Auth for SPA/Django as described by Nik Tomazic in this article
  • The benefits of this set up is that you're able to use django features where you want and selectively use React. Also you don't have to worry about JWT as we're using normal django authentication.

Proof Of Concept

A fully cloneable version of this that integrates mantine ui library can be found here

Quick Overview

  1. React/Redux/Typescript (Javascript not recommended)
  2. Vite is used for bundling
  3. Tailwind CSS is used for styling
  4. Quite opinionated but loosely coupled. The contents matter, structure doesn't

Run The Script

  1. You need to have node and a preferred dependency manager installed
  2. Create a new virtual environment using uv venv .venv or equivalent
  3. Install the package with
uv pip install django-react-tailwind-vite

or equivalent pip or pipenv commands

  1. Run the script with
dj-vite 

this will configure django, vite, tailwind and the react app

  1. You can uninstall the package once you've verified successful installation

Post Script Instructions

  1. Update and install frontend packages by running pnpm up --latest && pnpm install or equivalent

  2. Install the python dependencies by running uv pip install -r requirements.txt or equivalent

    • Note that the requirements.txt file has no versions so that you install the latest
  3. The django project settings file has the following additions

    #TEMPLATES["DIRS"] list in project/settings.py
    import os # top of file
    os.path.join(BASE_DIR, "templates")
    #static files section
    STATIC_ROOT = os.path.join(BASE_DIR.parent, "static")
    STATICFILES_DIRS = [
     os.path.join(BASE_DIR, "assets"),
    ]
    DJANGO_VITE = {
    "default": {
       "dev_mode": DEBUG, #to serve contents dynamically
       "manifest_path": os.path.join(BASE_DIR, "assets", "manifest.json"),
    }
    }
    #Allow Session Auth For React SPA
    CSRF_COOKIE_SAMESITE = "Lax"
    SESSION_COOKIE_SAMESITE = "Lax"
    CSRF_COOKIE_HTTPONLY = False  # False since we will grab it via universal-cookies
    SESSION_COOKIE_HTTPONLY = True
    
    SESSION_COOKIE_AGE = 60 * 60 * 24 * 7  # 1 week
    

To further understand these values, read:

  1. For Making API Queries to your backend, use this snippet in your axios client
import axios from "axios";
import Cookies from "universal-cookie";
const cookies = new Cookies();

//Rest Client Snippet
async function restClient(url: string, method: string, data: any) {
  const response = await axios({
    url: url,
    method: method,
    data: data,
    headers: {
      "Content-Type": "application/json",
      "X-CSRFToken": cookies.get("csrftoken"),
    },
    withCredentials: true,
  });
  return response;
}
// Graphql Client Snippet
async function graphqlClient(query: any) {
  const GRAPHQL_API_URL = "http://127.0.0.1:8000/your_graphql_endpoint"
  const queryResult = await axios.post(
    GRAPHQL_API_URL,
    { query },
    {
      headers: {
        "Content-Type": "application/json",
        "X-CSRFToken": cookies.get("csrftoken"),
      },
      withCredentials: true,
    },
  );
  return queryResult;
}

The idea is to have csrf token as part of your headers. That's why you don't need JWT!

Start Your Project

  1. Run pnpm run dev and python manage.py runserver in separate terminal windows
  2. Navigate to http://127.0.0.1:8000 and you will see the react home page loaded
  • Always use that url instead of localhost so that you use session auth
  • Alternatively, you may use localhost:8000 but ensure this is also equal to urls in the react app
  1. Try changing contents in frontend/src/pages/home.tsx to see live reload in action
  2. The django urls connects to the react home via the app/* regex wildcard
  3. Build on from there

Production

  1. Ensure you set the DJANGO_VITE["default"]["dev_mode"] to False
    • A nifty way is to set it DJANGO_VITE["default"]["dev_mode"]=DEBUG so that it sets dynamically per your environment
  2. Run pnpm run build
  3. Run python manage.py collectstatic
  4. Deploy your app and django-vite will auto serve bundled files

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_react_tailwind_vite-1.1.0.tar.gz (16.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_react_tailwind_vite-1.1.0-py3-none-any.whl (23.3 kB view details)

Uploaded Python 3

File details

Details for the file django_react_tailwind_vite-1.1.0.tar.gz.

File metadata

File hashes

Hashes for django_react_tailwind_vite-1.1.0.tar.gz
Algorithm Hash digest
SHA256 2797d6574dc7c4a6d5e8065dc5f4d1c73c6d32a25ebf2e56b1e961998bed801e
MD5 36c1be9fc5fada91b09e62d748ef739d
BLAKE2b-256 6d668d2462150c96179e22ea250d5efc6af131f9029f7c54ad61c623adc7cd87

See more details on using hashes here.

File details

Details for the file django_react_tailwind_vite-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_react_tailwind_vite-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ddece1bc6a7416e73b70faf68fe3c919b788879563121af9540d28d7c2e61405
MD5 adc3a80d3f57544e51860e777b261e3c
BLAKE2b-256 6a6c7cf3fb4d769eaa74284a8cb817412f08cc790d2c09e4491ba4d958cfa0c6

See more details on using hashes here.

Supported by

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