OLD | NEW |
1 # Set up the local directory to run the demo pages. | 1 # Set up the local directory to run the demo pages. |
2 default: | 2 default: |
3 bower install | 3 bower install |
4 npm install http-server | 4 npm install http-server |
5 mkdir --parents res/imp | 5 mkdir --parents res/imp |
6 ln -sf ../../third_party/bower_components res/imp/bower_components | 6 ln -sf ../../third_party/bower_components res/imp/bower_components |
7 » ln -sf ../../../../../res res/common | 7 » ln -sf ../../../res/common res/common |
8 | 8 |
9 # Run a local HTTP server for the demo pages. | 9 # Run a local HTTP server for the demo pages. |
10 run: | 10 run: |
11 » node_modules/.bin/http-server -p 8080 -a 127.0.0.1 | 11 » ../../node_modules/.bin/http-server -p 8080 -a 127.0.0.1 |
OLD | NEW |