| OLD | NEW |
| (Empty) |
| 1 application: sheriff-o-matic | |
| 2 version: 1 | |
| 3 runtime: python27 | |
| 4 api_version: 1 | |
| 5 threadsafe: true | |
| 6 | |
| 7 handlers: | |
| 8 - url: /alerts | |
| 9 script: alerts.app | |
| 10 secure: always | |
| 11 | |
| 12 - url: /alerts-history | |
| 13 script: alerts.app | |
| 14 secure: always | |
| 15 | |
| 16 - url: /alerts-history/.* | |
| 17 script: alerts.app | |
| 18 secure: always | |
| 19 | |
| 20 - url: /internal-alerts | |
| 21 script: internal_alerts.app | |
| 22 secure: always | |
| 23 | |
| 24 - url: /favicon.ico | |
| 25 static_files: favicon.ico | |
| 26 upload: favicon.ico | |
| 27 secure: always | |
| 28 | |
| 29 - url: /images | |
| 30 static_dir: images | |
| 31 secure: always | |
| 32 | |
| 33 - url: /lib | |
| 34 static_dir: lib | |
| 35 secure: always | |
| 36 | |
| 37 - url: /model | |
| 38 static_dir: model | |
| 39 secure: always | |
| 40 | |
| 41 - url: /scripts | |
| 42 static_dir: scripts | |
| 43 secure: always | |
| 44 | |
| 45 - url: /styles | |
| 46 static_dir: styles | |
| 47 secure: always | |
| 48 | |
| 49 - url: /ui | |
| 50 static_dir: ui | |
| 51 secure: always | |
| 52 | |
| 53 # FIXME: Write a script to do the appcfg update so that we can error out | |
| 54 # if there is no bower_components, or, even better just run "bower update". | |
| 55 - url: /bower_components | |
| 56 static_dir: bower_components | |
| 57 secure: always | |
| 58 | |
| 59 - url: /.* | |
| 60 static_files: sheriff-o-matic.html | |
| 61 upload: sheriff-o-matic.html | |
| 62 secure: always | |
| 63 http_headers: | |
| 64 Strict-Transport-Security: max-age=10886400; includeSubDomains | |
| 65 | |
| 66 skip_files: | |
| 67 - ^(.*/)?#.*#$ | |
| 68 - ^(.*/)?.*~$ | |
| 69 - ^(.*/)?.*\.py[co]$ | |
| 70 - ^(.*/)?.*_test\.py$ | |
| 71 - ^(.*/)?tests\.py$ | |
| 72 - ^(.*/)?.*/RCS/.*$ | |
| 73 - ^(.*/)?\..*$ | |
| 74 - ^(.*/)?.*\.md$ | |
| 75 - ^(.*/)?LICENSE$ | |
| 76 - ^(.*/)?README$ | |
| 77 - ^(.*/)?Makefile$ | |
| 78 | |
| 79 libraries: | |
| 80 - name: webapp2 | |
| 81 version: "latest" | |
| OLD | NEW |