Skip to content

Latest commit

 

History

History

hot-reload

Usage

Setup virtualenv (optional)

python -m venv venv
. venv/bin/activate

Install dependencies

pip install -r requirements.txt
npm install

Run migrations

./manage.py migrate

Run django server

./manage.py runserver

Run webpack dev server

npx webpack serve --mode=development --hot

Now you can make changes to assets/js/app.jsx and the changes will show up in the browser automagically.