| 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 | 17 - url: /static/images |
| 18 static_dir: ui/static/images | 18 static_dir: ui/static/images |
| 19 | 19 |
| 20 - url: /bower_components |
| 21 static_dir: ui/bower_components |
| 22 |
| 23 - url: /src |
| 24 static_dir: ui/src |
| 25 |
| 20 - url: /_ah/spi/.* | 26 - url: /_ah/spi/.* |
| 21 script: apps.endpoints | 27 script: apps.endpoints |
| 22 | 28 |
| 23 - url: /.* | 29 - url: /.* |
| 24 script: apps.html | 30 script: apps.html |
| 25 secure: always | 31 secure: always |
| 26 | 32 |
| 27 libraries: | 33 libraries: |
| 28 - name: endpoints | 34 - name: endpoints |
| 29 version: 1.0 | 35 version: 1.0 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 54 - .+_test\.py$ | 60 - .+_test\.py$ |
| 55 # Junk files. | 61 # Junk files. |
| 56 - ^(.*/)?\..* | 62 - ^(.*/)?\..* |
| 57 - .+\.orig$ | 63 - .+\.orig$ |
| 58 - .+\.rej$ | 64 - .+\.rej$ |
| 59 - ^(.*/)?#.*# | 65 - ^(.*/)?#.*# |
| 60 - .+~ | 66 - .+~ |
| 61 - .+\.py[co] | 67 - .+\.py[co] |
| 62 - ^[A-Z]+$ | 68 - ^[A-Z]+$ |
| 63 - ^[A-Z]+\.[a-z]+$ | 69 - ^[A-Z]+\.[a-z]+$ |
| OLD | NEW |