File tree Expand file tree Collapse file tree 4 files changed +50
-0
lines changed Expand file tree Collapse file tree 4 files changed +50
-0
lines changed Original file line number Diff line number Diff line change 1+ ## Usage
2+
3+ Setup virtualenv (optional)
4+ ```bash
5+ virtualenv ve
6+ . ve/bin/activate
7+ ```
8+
9+ Install dependencies
10+ ```bash
11+ pip install -r requirements.txt
12+ npm install
13+ ```
14+
15+ Run django server
16+ ```bash
17+ ./manage.py runserver
18+ ```
19+
20+ Run webpack compiler
21+ ```bash
22+ ./node_modules/.bin/webpack --config assets/webpack.config.js --watch
23+ ```
Original file line number Diff line number Diff line change 1+ ../README
Original file line number Diff line number Diff line change 1+ ## Usage
2+
3+ Setup virtualenv (optional)
4+ ```bash
5+ virtualenv ve
6+ . ve/bin/activate
7+ ```
8+
9+ Install dependencies
10+ ```bash
11+ pip install -r requirements.txt
12+ npm install
13+ ```
14+
15+ Run django server
16+ ```bash
17+ ./manage.py runserver
18+ ```
19+
20+ Run webpack dev server
21+ ```bash
22+ node server.js
23+ ```
24+
25+ Now you can make changes to `assets/js/app.jsx` and the changes will show up in the browser automagically.
Original file line number Diff line number Diff line change 1+ ../README
You can’t perform that action at this time.
0 commit comments