A basic isomorphic JavaScript application with React, and Django.
The example App here is adapted from the Smashing Magazine Ariticle, but using the python-react example.
-
Create a virtual environment for the example
virtualenv pydev source pydev/bin/activate
-
Install the project's python dependencies:
pip install -r requirements.txt
-
Install the project's JS dependencies (assumes you already have node installed):
npm install .
Start the django devserver
./manage.py runserver
And visit http://127.0.0.1:8000