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

Side by Side Diff: appengine/config_service/ui/README.md

Issue 2923973003: Added base template for config ui. (Closed)
Patch Set: Added license headers to necessary files. Created 3 years, 6 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
OLDNEW
(Empty)
1 # \<Config UI\>
2
3 This is a UI for the configuration service
4
5 ## Install the Polymer-CLI
6
7 First, make sure you have the [Polymer CLI](https://www.npmjs.com/package/polyme r-cli) installed. Then run `polymer serve` to serve your application locally.
turakulov 2017/06/08 01:22:00 Markdown files should not have lines longer than 8
8
9 ## Viewing Your Application
10
11 ```
12 $ polymer serve
13 ```
14
15 ## Building Your Application
16
17 ```
18 $ polymer build
19 ```
20
21 This will create builds of your application in the `build/` directory, optimized to be served in production. You can then serve the built versions by giving `po lymer serve` a folder to serve from:
22
23 ```
24 $ polymer serve build/default
25 ```
26
27 ## Running Tests
28
29 ```
30 $ polymer test
31 ```
32
33 Your application is already set up to be tested via [web-component-tester](https ://github.com/Polymer/web-component-tester). Run `polymer test` to run your appl ication's test suite locally.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698