Setup django with react using nwb
django project
1 | # django-admin startproject djangoreact |
react app with nwb
https://github.com/insin/nwb
A toolkit for React, Preact, Inferno & vanilla JS apps, React libraries and other npm modules for the web, with no configuration (until you need it)
Let’s start a react app
1 | # pwd |
config django template
Create folder templates
1 | # cd /Users/me/djangoreact |
Edit settings.py
1 | TEMPLATES = [ |
Edit urls.py
1 | from django.views.generic import TemplateView |
Run django server and make sure we see react entry point
, so our view react.html
works.
config nwb to link react to django
1 | # yarn add html-webpack-harddisk-plugin |
Edit nwb.config.js
1 | const HtmlWebpackHarddiskPlugin = require('html-webpack-harddisk-plugin'); |
Start react app again
1 | # cd reactjs |
Check templates/react.html
, we should see something like
1 |
|
This is react entry point for development, we use publicPath
== http://localhost:3000/
for this purpose
For production, we need to prepare react js files somewhere for django to collectstatic
Now, restart django app and check http://127.0.0.1:8000/
We should see our react app!
production deployment
1 | # cd reactjs |
All js files should be ready in reactjs/dist
. Check templates/react.html
to see the changes.
Now we need to tell django go to collectstatic
Edit settings.py
1 | STATIC_ROOT = os.path.join(BASE_DIR, 'static_dist') |
Restart django app and check again http://127.0.0.1:8000/
, react js is served by django static
commit dist or not! it doesn’t matter
We will want to fix reactjs/.gitignore
if we want to commit dist
, otherwise our CI server must do yarn build
first, then collectstatic
Now we have an app with react at frontend, backend by django, next step is add django rest framework,…etc