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

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

Issue 2225263004: Adds config component to Machine Provider (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: . 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/config.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/ 20 - url: /static/
21 secure: always 21 secure: always
22 static_dir: static 22 static_dir: static
23 - url: /.* 23 - url: /.*
24 script: main.frontend_app 24 script: main.frontend_app
25 secure: always 25 secure: always
26 26
27 includes: 27 includes:
28 - components/auth 28 - components/auth
29 - components/config
29 - gae_ts_mon 30 - gae_ts_mon
30 31
31 libraries: 32 libraries:
32 - name: endpoints 33 - name: endpoints
33 version: 1.0 34 version: 1.0
34 - name: pycrypto 35 - name: pycrypto
35 version: 2.6 36 version: 2.6
36 - name: webob 37 - name: webob
37 version: 1.2.3 38 version: 1.2.3
38 - name: webapp2 39 - name: webapp2
39 version: 2.5.2 40 version: 2.5.2
40 41
41 skip_files: 42 skip_files:
42 # Test and tools. 43 # Test and tools.
43 - support/ 44 - support/
44 - ^tests/ 45 - ^tests/
45 - ^tools/ 46 - ^tools/
46 - test_.+ 47 - test_.+
47 - .+_test\.py$ 48 - .+_test\.py$
48 # Junk files. 49 # Junk files.
49 - ^(.*/)?\..* 50 - ^(.*/)?\..*
50 - .+\.orig$ 51 - .+\.orig$
51 - .+\.rej$ 52 - .+\.rej$
52 - ^(.*/)?#.*# 53 - ^(.*/)?#.*#
53 - .+~ 54 - .+~
54 - .+\.py[co] 55 - .+\.py[co]
55 - ^[A-Z]+$ 56 - ^[A-Z]+$
56 - ^[A-Z]+\.[a-z]+$ 57 - ^[A-Z]+\.[a-z]+$
OLDNEW
« no previous file with comments | « no previous file | appengine/machine_provider/config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698