| OLD | NEW |
| 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 # App Engine configuration, see: | 5 # App Engine configuration, see: |
| 6 # https://developers.google.com/appengine/docs/python/config/appconfig | 6 # https://developers.google.com/appengine/docs/python/config/appconfig |
| 7 | 7 |
| 8 application: try-dart-lang | 8 application: try-dart-lang |
| 9 version: 5 | 9 version: 5-sdk1-0 |
| 10 runtime: python27 | 10 runtime: python27 |
| 11 api_version: 1 | 11 api_version: 1 |
| 12 threadsafe: yes | 12 threadsafe: yes |
| 13 default_expiration: 1s | 13 default_expiration: 1s |
| 14 | 14 |
| 15 handlers: | 15 handlers: |
| 16 | 16 |
| 17 - url: /favicon\.ico | 17 - url: /favicon\.ico |
| 18 static_files: favicon.ico | 18 static_files: favicon.ico |
| 19 upload: favicon\.ico | 19 upload: favicon\.ico |
| 20 secure: never | 20 secure: never |
| 21 | 21 |
| 22 - url: / | 22 - url: / |
| 23 static_files: index.html | 23 static_files: index.html |
| 24 upload: index.html | 24 upload: index.html |
| 25 secure: never | 25 secure: never |
| 26 | 26 |
| 27 - url: /nossl.appcache | 27 - url: /nossl.appcache |
| 28 static_files: nossl.appcache | 28 static_files: nossl.appcache |
| 29 upload: nossl.appcache | 29 upload: nossl.appcache |
| 30 secure: never | 30 secure: never |
| 31 | 31 |
| 32 - url: /(.*\.(html|js|png|css|dart)) | 32 - url: /(.*\.(html|js|png|css|dart|json)) |
| 33 static_files: \1 | 33 static_files: \1 |
| 34 upload: (.*\.(html|js|png|css|dart)) | 34 upload: (.*\.(html|js|png|css|dart|json)) |
| 35 secure: never | 35 secure: never |
| 36 | 36 |
| 37 - url: /css/fonts/ | 37 - url: /css/fonts/ |
| 38 static_dir: font | 38 static_dir: font |
| 39 secure: never | 39 secure: never |
| 40 | 40 |
| 41 error_handlers: | 41 error_handlers: |
| 42 - file: static/not_found.html | 42 - file: static/not_found.html |
| 43 | 43 |
| 44 libraries: | 44 libraries: |
| 45 - name: webapp2 | 45 - name: webapp2 |
| 46 version: "2.5.2" | 46 version: "2.5.2" |
| OLD | NEW |