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

Side by Side Diff: appengine/cmd/milo/frontend/app.yaml

Issue 2196453002: Milo: Console view prototype (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@master
Patch Set: Reviews 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 unified diff | Download patch
« no previous file with comments | « appengine/cmd/milo/console/html_data.go ('k') | appengine/cmd/milo/frontend/milo.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 application: luci-milo
2 version: go
3 runtime: go 1 runtime: go
4 api_version: go1 2 api_version: go1
5 3
6 instance_class: F4_1G 4 instance_class: F4_1G
7 5
8 handlers: 6 handlers:
9 # For static resources such as css and js files. 7 # For static resources such as css and js files.
10 - url: /static 8 - url: /static
11 secure: always 9 secure: always
12 static_dir: static 10 static_dir: static
13 11
14 # For sideloading data for testing and development. 12 # For sideloading data for testing and development.
15 - url: /_ah/remote_api 13 - url: /_ah/remote_api
16 script: _go_app 14 script: _go_app
17 15
18 # Everything goes here. 16 # Everything goes here.
19 - url: /.* 17 - url: /.*
20 script: _go_app 18 script: _go_app
21 secure: always 19 secure: always
22 20
23 builtins: 21 builtins:
24 - remote_api: on 22 - remote_api: on
OLDNEW
« no previous file with comments | « appengine/cmd/milo/console/html_data.go ('k') | appengine/cmd/milo/frontend/milo.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698