| OLD | NEW |
| (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. |
| 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. |
| OLD | NEW |