Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Side by Side Diff: appengine/swarming/elements/README.md

Issue 2174903002: Add stub pages and oauth-blessed request to /newui (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: Remove unneeded headers Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « appengine/swarming/elements/Makefile ('k') | appengine/swarming/elements/botlist.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 This contains all the Polymer 1.X elements used in swarming. 1 This contains all the Polymer 1.X elements used in swarming.
2
3 To clean and build the pages for deploying, run
4
5 npm install # Need to only run once to set up dev dependencies.
6 make vulcanize
7
8 This combines all of the elements needed to display the page into several "singl e-page" apps, like
9 the bot-list.
10 These are checked into version control so that they may be easily redeployed w/o having to rebuild
11 the pages if there were no changes.
12
13
14 To do a full clean rebuild, run
15
16 make clean_vulcanize
17
18
2 To access the demo pages on localhost:8080, run 19 To access the demo pages on localhost:8080, run
3 20
4
5 make && make run 21 make && make run
6 22
7 23
8 You will need to install node.js, npm, and bower, for example: 24 You will need to install node.js, npm, and bower, for example:
9 25
10 sudo apt-get install npm nodejs-legacy 26 sudo apt-get install npm nodejs-legacy
11 sudo npm install -g bower 27 sudo npm install -g bower
28
29
30 If you don't want to install npm globally, try
31
32 echo prefix = ~/foo/bar >> ~/.npmrc
33 curl https://www.npmjs.org/install.sh | sh
34 ~/foo/bar/npm install -g bower
OLDNEW
« no previous file with comments | « appengine/swarming/elements/Makefile ('k') | appengine/swarming/elements/botlist.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698