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