OLD | NEW |
1 # Copyright 2015 The Swarming Authors. All rights reserved. | 1 # Copyright 2015 The Swarming Authors. All rights reserved. |
2 # Use of this source code is governed by the Apache v2.0 license that can be | 2 # Use of this source code is governed by the Apache v2.0 license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 application: luci-config | 5 application: luci-config |
6 version: 1 | 6 version: 1 |
7 runtime: python27 | 7 runtime: python27 |
8 api_version: 1 | 8 api_version: 1 |
9 threadsafe: true | 9 threadsafe: true |
10 | 10 |
11 handlers: | 11 handlers: |
12 - url: /favicon.ico | 12 - url: /favicon.ico |
13 static_files: static/favicon.ico | 13 static_files: static/favicon.ico |
14 upload: static/favicon.ico | 14 upload: static/favicon.ico |
15 secure: always | 15 secure: always |
16 | 16 |
17 - url: /_ah/spi/.* | 17 - url: /_ah/spi/.* |
18 script: apps.endpoints | 18 script: apps.endpoints |
19 | 19 |
20 - url: /.* | 20 - url: /.* |
21 script: apps.html | 21 script: apps.html |
22 secure: always | 22 secure: always |
23 | 23 |
24 libraries: | 24 libraries: |
25 - name: endpoints | 25 - name: endpoints |
26 version: 1.0 | 26 version: 1.0 |
27 - name: jinja2 | |
28 version: latest | |
29 - name: pycrypto | 27 - name: pycrypto |
30 version: "2.6" | 28 version: "2.6" |
31 - name: webapp2 | 29 - name: webapp2 |
32 version: "2.5.2" | 30 version: "2.5.2" |
33 - name: webob | 31 - name: webob |
34 version: "1.2.3" | 32 version: "1.2.3" |
35 | 33 |
36 builtins: | 34 builtins: |
37 - deferred: on | 35 - deferred: on |
38 | 36 |
(...skipping 13 matching lines...) Expand all Loading... |
52 - .+_test\.py$ | 50 - .+_test\.py$ |
53 # Junk files. | 51 # Junk files. |
54 - ^(.*/)?\..* | 52 - ^(.*/)?\..* |
55 - .+\.orig$ | 53 - .+\.orig$ |
56 - .+\.rej$ | 54 - .+\.rej$ |
57 - ^(.*/)?#.*# | 55 - ^(.*/)?#.*# |
58 - .+~ | 56 - .+~ |
59 - .+\.py[co] | 57 - .+\.py[co] |
60 - ^[A-Z]+$ | 58 - ^[A-Z]+$ |
61 - ^[A-Z]+\.[a-z]+$ | 59 - ^[A-Z]+\.[a-z]+$ |
OLD | NEW |