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

Unified Diff: appengine/machine_provider/main.py

Issue 2196623004: Add basic Machine Provider UI (Closed) Base URL: https://github.com/luci/luci-py.git@master
Patch Set: Fix Created 4 years, 4 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
« no previous file with comments | « appengine/machine_provider/handlers_frontend.py ('k') | appengine/machine_provider/models.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/machine_provider/main.py
diff --git a/appengine/machine_provider/main.py b/appengine/machine_provider/main.py
index a704e7fcb2459daea88d056505077b138728402a..5ed2f39f7379125bf1fdda1ad178c51352edbcfc 100644
--- a/appengine/machine_provider/main.py
+++ b/appengine/machine_provider/main.py
@@ -10,14 +10,17 @@ import gae_ts_mon
import handlers_cron
import handlers_endpoints
+import handlers_frontend
import handlers_queues
utils.set_task_queue_module('default')
-endpoints_app = handlers_endpoints.create_endpoints_app()
cron_app = handlers_cron.create_cron_app()
+endpoints_app = handlers_endpoints.create_endpoints_app()
+frontend_app = handlers_frontend.create_frontend_app()
queue_app = handlers_queues.create_queues_app()
gae_ts_mon.initialize(app=cron_app)
+gae_ts_mon.initialize(app=frontend_app)
gae_ts_mon.initialize(app=queue_app)
« no previous file with comments | « appengine/machine_provider/handlers_frontend.py ('k') | appengine/machine_provider/models.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698