OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 application: dartlang-pub | 5 application: dartlang-pub |
6 version: 1 | 6 version: 1 |
7 runtime: python27 | 7 runtime: python27 |
8 threadsafe: true | 8 threadsafe: true |
9 api_version: 1 | 9 api_version: 1 |
10 | 10 |
11 builtins: | 11 builtins: |
12 - deferred: on | 12 - deferred: on |
13 | 13 |
14 handlers: | 14 handlers: |
15 - url: /static | 15 - url: /static |
16 static_dir: static | 16 static_dir: static |
17 | 17 |
18 - url: /(.*\.ico) | 18 - url: /(.*\.ico) |
19 static_files: static/\1 | 19 static_files: static/\1 |
20 expiration: 7d | 20 expiration: 7d |
21 upload: static/(.*\.ico) | 21 upload: static/(.*\.ico) |
22 | 22 |
23 - url: /img/ | 23 - url: /app/static/img |
24 static_dir: static/img | 24 static_dir: static/img |
25 | 25 |
26 - url: /.* | 26 - url: /.* |
27 script: pub_dartlang.app | 27 script: pub_dartlang.app |
28 | 28 |
29 libraries: | 29 libraries: |
30 - name: pycrypto | 30 - name: pycrypto |
31 version: "2.6" | 31 version: "2.6" |
32 | 32 |
33 inbound_services: | 33 inbound_services: |
34 - warmup | 34 - warmup |
OLD | NEW |