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

Side by Side Diff: appengine/gce-backend/app.yaml

Issue 1481573002: Update jinja2 to master (between 2.8 and 2.8.1); fix urlencode bug. (Closed) Base URL: git@github.com:luci/luci-py.git@1_tools
Patch Set: Add import hack Created 5 years 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 | « appengine/config_service/module-backend.yaml ('k') | appengine/isolate/app.yaml » ('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-gce-backend-id 2 application: your-gce-backend-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: /internal/cron/.* 9 - url: /internal/cron/.*
10 login: admin 10 login: admin
11 script: main.cron_app 11 script: main.cron_app
12 secure: always 12 secure: always
13 - url: /internal/queues/.* 13 - url: /internal/queues/.*
14 login: admin 14 login: admin
15 script: main.queues_app 15 script: main.queues_app
16 secure: always 16 secure: always
17 - url: /pubsub/.* 17 - url: /pubsub/.*
18 script: main.pubsub_app 18 script: main.pubsub_app
19 secure: always 19 secure: always
20 20
21 includes: 21 includes:
22 - components/auth 22 - components/auth
23 23
24 libraries: 24 libraries:
25 - name: endpoints 25 - name: endpoints
26 version: 1.0 26 version: 1.0
27 - name: jinja2
28 version: 2.6
29 - name: pycrypto 27 - name: pycrypto
30 version: 2.6 28 version: 2.6
31 - name: webob 29 - name: webob
32 version: 1.2.3 30 version: 1.2.3
33 - name: webapp2 31 - name: webapp2
34 version: 2.5.2 32 version: 2.5.2
35 33
36 skip_files: 34 skip_files:
37 # Test and tools. 35 # Test and tools.
38 - support/ 36 - support/
39 - ^tests/ 37 - ^tests/
40 - ^tools/ 38 - ^tools/
41 - test_.+ 39 - test_.+
42 - .+_test\.py$ 40 - .+_test\.py$
43 # Junk files. 41 # Junk files.
44 - ^(.*/)?\..* 42 - ^(.*/)?\..*
45 - .+\.orig$ 43 - .+\.orig$
46 - .+\.rej$ 44 - .+\.rej$
47 - ^(.*/)?#.*# 45 - ^(.*/)?#.*#
48 - .+~ 46 - .+~
49 - .+\.py[co] 47 - .+\.py[co]
50 - ^[A-Z]+$ 48 - ^[A-Z]+$
51 - ^[A-Z]+\.[a-z]+$ 49 - ^[A-Z]+\.[a-z]+$
OLDNEW
« no previous file with comments | « appengine/config_service/module-backend.yaml ('k') | appengine/isolate/app.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698