Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Side by Side Diff: appengine/config_service/app.yaml

Issue 2935763003: config_service: improve landing page (Closed)
Patch Set: Fixed final nits. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | appengine/config_service/ui/.gitignore » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
17 - url: /_ah/spi/.* 20 - url: /_ah/spi/.*
18 script: apps.endpoints 21 script: apps.endpoints
19 22
20 - url: /.* 23 - url: /.*
21 script: apps.html 24 script: apps.html
22 secure: always 25 secure: always
23 26
24 libraries: 27 libraries:
25 - name: endpoints 28 - name: endpoints
26 version: 1.0 29 version: 1.0
(...skipping 24 matching lines...) Expand all
51 - .+_test\.py$ 54 - .+_test\.py$
52 # Junk files. 55 # Junk files.
53 - ^(.*/)?\..* 56 - ^(.*/)?\..*
54 - .+\.orig$ 57 - .+\.orig$
55 - .+\.rej$ 58 - .+\.rej$
56 - ^(.*/)?#.*# 59 - ^(.*/)?#.*#
57 - .+~ 60 - .+~
58 - .+\.py[co] 61 - .+\.py[co]
59 - ^[A-Z]+$ 62 - ^[A-Z]+$
60 - ^[A-Z]+\.[a-z]+$ 63 - ^[A-Z]+\.[a-z]+$
OLDNEW
« no previous file with comments | « no previous file | appengine/config_service/ui/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698