| 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 # The version number should be something like rSVN_REVISION. | 8 # The version number should be something like rSVN_REVISION. |
| 9 version: remember to edit app.yaml before deploying | 9 version: remember to edit app.yaml before deploying |
| 10 # This version name is used to create a new host, for example, | 10 # This version name is used to create a new host, for example, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 secure: always | 53 secure: always |
| 54 | 54 |
| 55 - url: /packages/intl | 55 - url: /packages/intl |
| 56 static_dir: packages/intl | 56 static_dir: packages/intl |
| 57 secure: always | 57 secure: always |
| 58 | 58 |
| 59 - url: /packages/logging | 59 - url: /packages/logging |
| 60 static_dir: packages/logging | 60 static_dir: packages/logging |
| 61 secure: always | 61 secure: always |
| 62 | 62 |
| 63 - url: /packages/matcher | |
| 64 static_dir: packages/matcher | |
| 65 secure: always | |
| 66 | |
| 67 - url: /packages/math | 63 - url: /packages/math |
| 68 static_dir: packages/math | 64 static_dir: packages/math |
| 69 secure: always | 65 secure: always |
| 70 | 66 |
| 71 - url: /packages/path | 67 - url: /packages/path |
| 72 static_dir: packages/path | 68 static_dir: packages/path |
| 73 secure: always | 69 secure: always |
| 74 | 70 |
| 75 - url: /packages/serialization | 71 - url: /packages/serialization |
| 76 static_dir: packages/serialization | 72 static_dir: packages/serialization |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 secure: always | 109 secure: always |
| 114 | 110 |
| 115 - url: /css/fonts/fontawesome-webfont.woff | 111 - url: /css/fonts/fontawesome-webfont.woff |
| 116 static_files: fontawesome-webfont.woff | 112 static_files: fontawesome-webfont.woff |
| 117 upload: fontawesome-webfont.woff | 113 upload: fontawesome-webfont.woff |
| 118 secure: always | 114 secure: always |
| 119 | 115 |
| 120 libraries: | 116 libraries: |
| 121 - name: webapp2 | 117 - name: webapp2 |
| 122 version: "2.5.2" | 118 version: "2.5.2" |
| OLD | NEW |