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

Side by Side Diff: Tools/GardeningServer/app.yaml

Issue 465233002: Store alerts in sheriff-o-matic's memcache. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Simplify testing environment. Created 6 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 | Annotate | Revision Log
OLDNEW
1 application: sheriff-o-matic 1 application: sheriff-o-matic
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 6
7 handlers: 7 handlers:
8 - url: / 8 - url: /
9 static_files: sheriff-o-matic.html 9 static_files: sheriff-o-matic.html
10 upload: sheriff-o-matic.html 10 upload: sheriff-o-matic.html
11 11
12 - url: /alerts
13 script: alerts.app
14
12 - url: /favicon.ico 15 - url: /favicon.ico
13 static_files: favicon.ico 16 static_files: favicon.ico
14 upload: favicon.ico 17 upload: favicon.ico
15 18
16 - url: /images 19 - url: /images
17 static_dir: images 20 static_dir: images
18 21
19 - url: /lib 22 - url: /lib
20 static_dir: lib 23 static_dir: lib
21 24
(...skipping 11 matching lines...) Expand all
33 36
34 # FIXME: Write a script to do the appcfg update so that we can error out 37 # FIXME: Write a script to do the appcfg update so that we can error out
35 # if there is no bower_components, or, even better just run "bower update". 38 # if there is no bower_components, or, even better just run "bower update".
36 - url: /bower_components 39 - url: /bower_components
37 static_dir: bower_components 40 static_dir: bower_components
38 41
39 skip_files: 42 skip_files:
40 - ^(.*/)?#.*#$ 43 - ^(.*/)?#.*#$
41 - ^(.*/)?.*~$ 44 - ^(.*/)?.*~$
42 - ^(.*/)?.*\.py[co]$ 45 - ^(.*/)?.*\.py[co]$
46 - ^(.*/)?.*_test\.py$
47 - ^(.*/)?tests\.py$
43 - ^(.*/)?.*/RCS/.*$ 48 - ^(.*/)?.*/RCS/.*$
44 - ^(.*/)?\..*$ 49 - ^(.*/)?\..*$
45 - ^(.*/)?.*\.md$ 50 - ^(.*/)?.*\.md$
46 - ^(.*/)?LICENSE$ 51 - ^(.*/)?LICENSE$
47 - ^(.*/)?README$ 52 - ^(.*/)?README$
48 - ^(.*/)?Makefile$ 53 - ^(.*/)?Makefile$
54
55 libraries:
56 - name: webapp2
57 version: "latest"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698