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

Side by Side Diff: appengine/findit/waterfall-frontend.yaml

Issue 2131473003: UI for the regression range test. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: +tests and lint Created 4 years, 5 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
OLDNEW
1 application: findit-for-me-dev 1 application: findit-for-me-dev
2 version: 1 2 version: 1
3 runtime: python27 3 runtime: python27
4 api_version: 1 4 api_version: 1
5 threadsafe: true 5 threadsafe: true
6 module: waterfall-frontend 6 module: waterfall-frontend
7 instance_class: F1 7 instance_class: F1
8 automatic_scaling: 8 automatic_scaling:
9 min_idle_instances: 1 9 min_idle_instances: 1
10 max_concurrent_requests: 25 10 max_concurrent_requests: 25
11 11
12 handlers: 12 handlers:
13 # Static resources and home page. 13 # Static resources and home page.
14 - url: / 14 - url: /
15 static_files: templates/home.html 15 static_files: templates/home.html
16 upload: templates/home.html 16 upload: templates/home.html
17 17
18 - url: /robots.txt 18 - url: /robots.txt
19 static_files: static/robots.txt 19 static_files: static/robots.txt
20 upload: static/robots.txt 20 upload: static/robots.txt
21 21
22 - url: /common.css 22 - url: /common.css
23 static_files: static/common.css 23 static_files: static/common.css
24 upload: static/common.css 24 upload: static/common.css
25 25
26 - url: /waterfall/flake 26 - url: /waterfall/flake
27 static_files: templates/flake.html 27 static_files: templates/flake/flake.html
28 upload: templates/flake.html 28 upload: templates/flake/flake.html
29 29
30 # Pipeline status UI handler. 30 # Pipeline status UI handler.
31 - url: /_ah/pipeline(/.*)? 31 - url: /_ah/pipeline(/.*)?
32 script: main.pipeline_status_application 32 script: main.pipeline_status_application
33 secure: always 33 secure: always
34 34
35 # Endpoints handler. 35 # Endpoints handler.
36 - url: /_ah/spi/.* 36 - url: /_ah/spi/.*
37 script: main.api_application 37 script: main.api_application
38 secure: always 38 secure: always
(...skipping 17 matching lines...) Expand all
56 56
57 libraries: 57 libraries:
58 - name: webapp2 58 - name: webapp2
59 version: latest 59 version: latest
60 - name: jinja2 60 - name: jinja2
61 version: latest 61 version: latest
62 - name: pycrypto 62 - name: pycrypto
63 version: latest 63 version: latest
64 - name: endpoints 64 - name: endpoints
65 version: 1.0 65 version: 1.0
OLDNEW
« appengine/findit/templates/flake/flake.html ('K') | « appengine/findit/templates/flake/result.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698