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

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

Issue 2196623004: Add basic Machine Provider UI (Closed) Base URL: https://github.com/luci/luci-py.git@master
Patch Set: Fix Created 4 years, 4 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/machine_provider/handlers_cron.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Do not change. Use gae.py to upload a differently named instance. 1 # Do not change. Use gae.py to upload a differently named instance.
2 application: your-machine-provider-id 2 application: your-machine-provider-id
3 version: 1 3 version: 1
4 runtime: python27 4 runtime: python27
5 threadsafe: true 5 threadsafe: true
6 api_version: 1 6 api_version: 1
7 7
8 handlers: 8 handlers:
9 - url: /_ah/spi/.* 9 - url: /_ah/spi/.*
10 script: main.endpoints_app 10 script: main.endpoints_app
11 secure: always 11 secure: always
12 - url: /internal/cron/.* 12 - url: /internal/cron/.*
13 login: admin 13 login: admin
14 script: main.cron_app 14 script: main.cron_app
15 secure: always 15 secure: always
16 - url: /internal/queues/.* 16 - url: /internal/queues/.*
17 login: admin 17 login: admin
18 script: main.queue_app 18 script: main.queue_app
19 secure: always 19 secure: always
20 - url: /static/
21 secure: always
22 static_dir: static
23 - url: /.*
24 script: main.frontend_app
25 secure: always
20 26
21 includes: 27 includes:
22 - components/auth 28 - components/auth
23 - gae_ts_mon 29 - gae_ts_mon
24 30
25 libraries: 31 libraries:
26 - name: endpoints 32 - name: endpoints
27 version: 1.0 33 version: 1.0
28 - name: pycrypto 34 - name: pycrypto
29 version: 2.6 35 version: 2.6
(...skipping 11 matching lines...) Expand all
41 - .+_test\.py$ 47 - .+_test\.py$
42 # Junk files. 48 # Junk files.
43 - ^(.*/)?\..* 49 - ^(.*/)?\..*
44 - .+\.orig$ 50 - .+\.orig$
45 - .+\.rej$ 51 - .+\.rej$
46 - ^(.*/)?#.*# 52 - ^(.*/)?#.*#
47 - .+~ 53 - .+~
48 - .+\.py[co] 54 - .+\.py[co]
49 - ^[A-Z]+$ 55 - ^[A-Z]+$
50 - ^[A-Z]+\.[a-z]+$ 56 - ^[A-Z]+\.[a-z]+$
OLDNEW
« no previous file with comments | « no previous file | appengine/machine_provider/handlers_cron.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698