OLD | NEW |
1 application: sheriff-o-matic | 1 application: auto-sheriff |
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: nannybot.html |
10 upload: sheriff-o-matic.html | 10 upload: nannybot.html |
11 | 11 - url: /closers |
| 12 static_files: closers.html |
| 13 upload: closers.html |
| 14 - url: /components |
| 15 static_dir: bower_components |
| 16 - url: /scripts |
| 17 static_dir: scripts |
| 18 - url: /ui |
| 19 static_dir: ui |
12 - url: /favicon.ico | 20 - url: /favicon.ico |
13 static_files: favicon.ico | 21 static_files: favicon.ico |
14 upload: favicon.ico | 22 upload: favicon.ico |
| 23 - url: /.* |
| 24 script: main.app |
15 | 25 |
16 - url: /images | |
17 static_dir: images | |
18 | |
19 - url: /scripts | |
20 static_dir: scripts | |
21 | |
22 - url: /styles | |
23 static_dir: styles | |
24 | |
25 - url: /ui | |
26 static_dir: ui | |
27 | |
28 # FIXME: Write a script to do the appcfg update so that we can error out | |
29 # if there is no bower_components, or, even better just run "bower update". | |
30 - url: /bower_components | |
31 static_dir: bower_components | |
32 | 26 |
33 skip_files: | 27 skip_files: |
34 - ^(.*/)?#.*#$ | 28 - ^(.*/)?#.*#$ |
35 - ^(.*/)?.*~$ | 29 - ^(.*/)?.*~$ |
36 - ^(.*/)?.*\.py[co]$ | 30 - ^(.*/)?.*\.py[co]$ |
37 - ^(.*/)?.*/RCS/.*$ | 31 - ^(.*/)?.*/RCS/.*$ |
38 - ^(.*/)?\..*$ | 32 - ^(.*/)?\..*$ |
39 - ^(.*/)?.*\.md$ | 33 - ^(.*/)?.*\.md$ |
40 - ^(.*/)?LICENSE$ | 34 - ^(.*/)?LICENSE$ |
41 - ^(.*/)?README$ | 35 - ^(.*/)?README$ |
42 - ^(.*/)?Makefile$ | 36 - ^(.*/)?Makefile$ |
OLD | NEW |