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

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

Issue 469633002: Add lib directory to app.yaml for sheriff-o-matic. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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: /favicon.ico 12 - url: /favicon.ico
13 static_files: favicon.ico 13 static_files: favicon.ico
14 upload: favicon.ico 14 upload: favicon.ico
15 15
16 - url: /images 16 - url: /images
17 static_dir: images 17 static_dir: images
18 18
19 - url: /lib
20 static_dir: lib
21
19 - url: /model 22 - url: /model
20 static_dir: model 23 static_dir: model
21 24
22 - url: /scripts 25 - url: /scripts
23 static_dir: scripts 26 static_dir: scripts
24 27
25 - url: /styles 28 - url: /styles
26 static_dir: styles 29 static_dir: styles
27 30
28 - url: /ui 31 - url: /ui
29 static_dir: ui 32 static_dir: ui
30 33
31 # FIXME: Write a script to do the appcfg update so that we can error out 34 # FIXME: Write a script to do the appcfg update so that we can error out
32 # if there is no bower_components, or, even better just run "bower update". 35 # if there is no bower_components, or, even better just run "bower update".
33 - url: /bower_components 36 - url: /bower_components
34 static_dir: bower_components 37 static_dir: bower_components
35 38
36 skip_files: 39 skip_files:
37 - ^(.*/)?#.*#$ 40 - ^(.*/)?#.*#$
38 - ^(.*/)?.*~$ 41 - ^(.*/)?.*~$
39 - ^(.*/)?.*\.py[co]$ 42 - ^(.*/)?.*\.py[co]$
40 - ^(.*/)?.*/RCS/.*$ 43 - ^(.*/)?.*/RCS/.*$
41 - ^(.*/)?\..*$ 44 - ^(.*/)?\..*$
42 - ^(.*/)?.*\.md$ 45 - ^(.*/)?.*\.md$
43 - ^(.*/)?LICENSE$ 46 - ^(.*/)?LICENSE$
44 - ^(.*/)?README$ 47 - ^(.*/)?README$
45 - ^(.*/)?Makefile$ 48 - ^(.*/)?Makefile$
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698