Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The LUCI Authors. All rights reserved. | 1 # Copyright 2015 The LUCI Authors. All rights reserved. |
| 2 # Use of this source code is governed under the Apache License, Version 2.0 | 2 # Use of this source code is governed under the Apache License, Version 2.0 |
| 3 # that can be found in the LICENSE file. | 3 # that can be 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: /static/images | |
| 18 static_dir: ui/static/images | |
| 19 upload: ui/static/images | |
|
nodir
2017/06/13 16:35:03
upload and static_dir are mutually exclusive
cwpayton
2017/06/13 16:44:33
Done.
| |
| 20 | |
| 17 - url: /_ah/spi/.* | 21 - url: /_ah/spi/.* |
| 18 script: apps.endpoints | 22 script: apps.endpoints |
| 19 | 23 |
| 20 - url: /.* | 24 - url: /.* |
| 21 script: apps.html | 25 script: apps.html |
| 22 secure: always | 26 secure: always |
| 23 | 27 |
| 24 libraries: | 28 libraries: |
| 25 - name: endpoints | 29 - name: endpoints |
| 26 version: 1.0 | 30 version: 1.0 |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 51 - .+_test\.py$ | 55 - .+_test\.py$ |
| 52 # Junk files. | 56 # Junk files. |
| 53 - ^(.*/)?\..* | 57 - ^(.*/)?\..* |
| 54 - .+\.orig$ | 58 - .+\.orig$ |
| 55 - .+\.rej$ | 59 - .+\.rej$ |
| 56 - ^(.*/)?#.*# | 60 - ^(.*/)?#.*# |
| 57 - .+~ | 61 - .+~ |
| 58 - .+\.py[co] | 62 - .+\.py[co] |
| 59 - ^[A-Z]+$ | 63 - ^[A-Z]+$ |
| 60 - ^[A-Z]+\.[a-z]+$ | 64 - ^[A-Z]+\.[a-z]+$ |
| OLD | NEW |