/django-inertia-react

A minimal example: Django + Inertia.js + React

Primary LanguagePython

django-inertia-react

Based on the Inertia.js + Django Setup tutorial by Honoré Hounwanou.

Setup

mkdir inertia && cd inertia/
python3 -m venv venv && source venv/bin/activate
git clone git@github.com:fertek/django-inertia-react.git src && cd src/
pip install -r requirements.txt

Terminal 1:

# cd inertia/src/
npm install
npm run dev

Terminal 2:

# cd inertia/src/
# source ../venv/bin/activate
./manage.py migrate
./manage.py runserver

Visit http://localhost:8000/.