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

Side by Side Diff: appengine/findit/app.yaml

Issue 1866883002: [Findit] A huge refactoring and some bug fixing. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Fix nit. Created 4 years, 8 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 | « no previous file | appengine/findit/build-failure-analysis.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 application: findit-for-waterfall 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: default 6 module: default
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 builtins: 12 builtins:
13 - remote_api: on 13 - remote_api: on
14 14
15 handlers: 15 handlers:
16 # Static resources and home page.
17 - url: /
18 static_files: templates/home.html
19 upload: templates/home.html
20
16 - url: /robots.txt 21 - url: /robots.txt
17 static_files: static/robots.txt 22 static_files: static/robots.txt
18 upload: static/robots.txt 23 upload: static/robots.txt
19 24
20 - url: /
21 static_files: templates/home.html
22 upload: templates/home.html
23
24 - url: /common.css 25 - url: /common.css
25 static_files: static/common.css 26 static_files: static/common.css
26 upload: static/common.css 27 upload: static/common.css
27 28
28 # Pipeline status UI handler. 29 # Pipeline status UI handler.
29 - url: /_ah/pipeline(/.*)? 30 - url: /_ah/pipeline(/.*)?
30 script: main.pipeline_status_application 31 script: main.pipeline_status_application
31 secure: always 32 secure: always
32 33
33 # Endpoints handler. 34 # Endpoints handler.
34 - url: /_ah/spi/.* 35 - url: /_ah/spi/.*
35 script: main.api_application 36 script: main.api_application
36 secure: always 37 secure: always
37 38
38 - url: /.* 39 - url: /.*
39 script: main.web_application 40 script: main.default_web_application
40 secure: always 41 secure: always
41 42
42 skip_files: 43 skip_files:
43 - ^(.*/)?#.*#$ 44 - ^(.*/)?#.*#$
44 - ^(.*/)?.*~$ 45 - ^(.*/)?.*~$
45 - ^(.*/)?.*\.py[co]$ 46 - ^(.*/)?.*\.py[co]$
46 - ^(.*/)?.*_test\.py$ 47 - ^(.*/)?.*_test\.py$
47 - ^(.*/)?tests\.py$ 48 - ^(.*/)?tests\.py$
48 - ^(.*/)?\..*$ 49 - ^(.*/)?\..*$
49 - ^(.*/)?.*\.md$ 50 - ^(.*/)?.*\.md$
50 - ^(.*/)?README$ 51 - ^(.*/)?README$
51 - ^(.*/)?Makefile$ 52 - ^(.*/)?Makefile$
52 - ^(.*/)?util_scripts/.*$ 53 - ^(.*/)?util_scripts/.*$
53 54
54 libraries: 55 libraries:
55 - name: webapp2 56 - name: webapp2
56 version: latest 57 version: latest
57 - name: jinja2 58 - name: jinja2
58 version: latest 59 version: latest
59 - name: pycrypto 60 - name: pycrypto
60 version: latest 61 version: latest
61 - name: endpoints 62 - name: endpoints
62 version: 1.0 63 version: 1.0
OLDNEW
« no previous file with comments | « no previous file | appengine/findit/build-failure-analysis.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698