| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 secure: always | 45 secure: always |
| 46 | 46 |
| 47 - url: /packages/http | 47 - url: /packages/http |
| 48 static_dir: packages/http | 48 static_dir: packages/http |
| 49 secure: always | 49 secure: always |
| 50 | 50 |
| 51 - url: /packages/http_parser | 51 - url: /packages/http_parser |
| 52 static_dir: packages/http_parser | 52 static_dir: packages/http_parser |
| 53 secure: always | 53 secure: always |
| 54 | 54 |
| 55 - url: /packages/intl | |
| 56 static_dir: packages/intl | |
| 57 secure: always | |
| 58 | |
| 59 - url: /packages/logging | 55 - url: /packages/logging |
| 60 static_dir: packages/logging | 56 static_dir: packages/logging |
| 61 secure: always | 57 secure: always |
| 62 | 58 |
| 63 - url: /packages/math | 59 - url: /packages/math |
| 64 static_dir: packages/math | 60 static_dir: packages/math |
| 65 secure: always | 61 secure: always |
| 66 | 62 |
| 67 - url: /packages/path | 63 - url: /packages/path |
| 68 static_dir: packages/path | 64 static_dir: packages/path |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 secure: always | 105 secure: always |
| 110 | 106 |
| 111 - url: /css/fonts/fontawesome-webfont.woff | 107 - url: /css/fonts/fontawesome-webfont.woff |
| 112 static_files: fontawesome-webfont.woff | 108 static_files: fontawesome-webfont.woff |
| 113 upload: fontawesome-webfont.woff | 109 upload: fontawesome-webfont.woff |
| 114 secure: always | 110 secure: always |
| 115 | 111 |
| 116 libraries: | 112 libraries: |
| 117 - name: webapp2 | 113 - name: webapp2 |
| 118 version: "2.5.2" | 114 version: "2.5.2" |
| OLD | NEW |