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

Unified 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 side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698