| OLD | NEW |
| 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 # App Engine configuration, see: |
| 6 # https://developers.google.com/appengine/docs/python/config/appconfig |
| 7 |
| 1 application: try-dart-lang | 8 application: try-dart-lang |
| 2 version: 5 | 9 version: 5 |
| 3 runtime: python27 | 10 runtime: python27 |
| 4 api_version: 1 | 11 api_version: 1 |
| 5 threadsafe: yes | 12 threadsafe: yes |
| 6 default_expiration: 1s | 13 default_expiration: 1s |
| 7 | 14 |
| 8 handlers: | 15 handlers: |
| 9 | 16 |
| 10 - url: /favicon\.ico | 17 - url: /favicon\.ico |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 - url: /css/fonts/ | 37 - url: /css/fonts/ |
| 31 static_dir: font | 38 static_dir: font |
| 32 secure: never | 39 secure: never |
| 33 | 40 |
| 34 error_handlers: | 41 error_handlers: |
| 35 - file: static/not_found.html | 42 - file: static/not_found.html |
| 36 | 43 |
| 37 libraries: | 44 libraries: |
| 38 - name: webapp2 | 45 - name: webapp2 |
| 39 version: "2.5.2" | 46 version: "2.5.2" |
| OLD | NEW |