Chromium Code Reviews| Index: appengine/config_service/ui/README.md |
| diff --git a/appengine/config_service/ui/README.md b/appengine/config_service/ui/README.md |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a7e1fdfc2c1e42401a1f27f045460962582aedb1 |
| --- /dev/null |
| +++ b/appengine/config_service/ui/README.md |
| @@ -0,0 +1,33 @@ |
| +# \<Config UI\> |
| + |
| +This is a UI for the configuration service |
| + |
| +## Install the Polymer-CLI |
| + |
| +First, make sure you have the [Polymer CLI](https://www.npmjs.com/package/polymer-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
|
| + |
| +## Viewing Your Application |
| + |
| +``` |
| +$ polymer serve |
| +``` |
| + |
| +## Building Your Application |
| + |
| +``` |
| +$ polymer build |
| +``` |
| + |
| +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 `polymer serve` a folder to serve from: |
| + |
| +``` |
| +$ polymer serve build/default |
| +``` |
| + |
| +## Running Tests |
| + |
| +``` |
| +$ polymer test |
| +``` |
| + |
| +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 application's test suite locally. |