Based on the Inertia.js + Django Setup tutorial by Honoré Hounwanou.
mkdir inertia && cd inertia/
python3 -m venv venv && source venv/bin/activate
git clone [email protected]: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/.