OLD | NEW |
1 service: pinpoint | 1 service: pinpoint |
2 | 2 |
3 runtime: python27 | 3 runtime: python27 |
4 api_version: 1 | 4 api_version: 1 |
5 threadsafe: true | 5 threadsafe: true |
6 instance_class: F1 | 6 instance_class: F1 |
7 | 7 |
| 8 default_expiration: "30s" |
| 9 |
8 libraries: | 10 libraries: |
9 - name: pycrypto | 11 - name: pycrypto |
10 version: "2.6" | 12 version: "2.6" |
11 - name: webapp2 | 13 - name: webapp2 |
12 version: "2.5.1" | 14 version: "2.5.1" |
13 | 15 |
14 handlers: | 16 handlers: |
15 | 17 |
16 - url: /api/run/.* | 18 - url: /api/run/.* |
17 script: dashboard.pinpoint.dispatcher.APP | 19 script: dashboard.pinpoint.dispatcher.APP |
(...skipping 26 matching lines...) Expand all Loading... |
44 | 46 |
45 - url: /favicon.ico | 47 - url: /favicon.ico |
46 static_files: dashboard/static/favicon.ico | 48 static_files: dashboard/static/favicon.ico |
47 upload: dashboard/static/favicon.ico | 49 upload: dashboard/static/favicon.ico |
48 secure: always | 50 secure: always |
49 | 51 |
50 - url: /.* | 52 - url: /.* |
51 static_files: dashboard/pinpoint/index/index.html | 53 static_files: dashboard/pinpoint/index/index.html |
52 upload: dashboard/pinpoint/index/index.html | 54 upload: dashboard/pinpoint/index/index.html |
53 secure: always | 55 secure: always |
OLD | NEW |