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

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

Issue 2755273003: Milo: Split pubsub and the prpc api out to its own modules (Closed)
Patch Set: Update reviews Created 3 years, 9 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 | « milo/Makefile ('k') | milo/appengine/frontend/dispatch.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 runtime: go 1 runtime: go
2 api_version: go1 2 api_version: go1
3 service: default
3 4
4 instance_class: F4_1G 5 instance_class: F4_1G
5 6
6 handlers: 7 handlers:
7 # For static resources such as css and js files. 8 # For static resources such as css and js files.
8 - url: /static 9 - url: /static
9 secure: always 10 secure: always
10 static_dir: static 11 static_dir: static
11 12
12 # For sideloading data for testing and development. 13 # For sideloading data for testing and development.
13 - url: /_ah/remote_api 14 - url: /_ah/remote_api
14 script: _go_app 15 script: _go_app
15 16
16 # For admin resources or endpoints meant to be hit by a cron job. 17 # For admin resources or endpoints meant to be hit by a cron job.
17 - url: /admin/.* 18 - url: /admin/.*
18 script: _go_app 19 script: _go_app
19 secure: always 20 secure: always
20 login: admin 21 login: admin
21 22
22 # Everything goes here. 23 # Everything goes here.
23 - url: /.* 24 - url: /.*
24 script: _go_app 25 script: _go_app
25 secure: always 26 secure: always
26 27
27 builtins: 28 builtins:
28 - remote_api: on 29 - remote_api: on
29 30
30 includes: 31 includes:
31 - static 32 - static
OLDNEW
« no previous file with comments | « milo/Makefile ('k') | milo/appengine/frontend/dispatch.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698