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

Unified Diff: appengine/config_service/ui/Makefile

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/Makefile
diff --git a/appengine/config_service/ui/Makefile b/appengine/config_service/ui/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..f8a20a7805334aa17d6d3b15595f902b84477c69
--- /dev/null
+++ b/appengine/config_service/ui/Makefile
@@ -0,0 +1,14 @@
+# Copyright 2017 The LUCI Authors. All rights reserved.
+# Use of this source code is governed by the Apache v2.0 license that can be
+# found in the LICENSE file.
+
+default:
+ bower install
+
+.PHONY: run
+run: default
+ polymer serve
+
+.PHONY: clean
+clean:
+ rm -rf bower_components

Powered by Google App Engine
This is Rietveld 408576698