Skip to content

Latest commit

 

History

History
39 lines (20 loc) · 941 Bytes

README.md

File metadata and controls

39 lines (20 loc) · 941 Bytes

Isomorphic javascript powered by python-react

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.

Install

  1. Create a virtual environment for the example

     virtualenv pydev
     source pydev/bin/activate
    
  2. Install the project's python dependencies:

     pip install -r requirements.txt
    
  3. Install the project's JS dependencies (assumes you already have node installed):

     npm install .
    

Run

Start the django devserver

./manage.py runserver

And visit http://127.0.0.1:8000