-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.yaml
More file actions
43 lines (38 loc) · 766 Bytes
/
app.yaml
File metadata and controls
43 lines (38 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
application: coursebuilder03 # chenhaoyu1006 # FIXME: Replace this with your application id
version: 1
runtime: python27
api_version: 1
threadsafe: false
env_variables:
GCB_PRODUCT_VERSION: '1.6.0'
GCB_APPSTATS_ENABLED: false
inbound_services:
- warmup
builtins:
- remote_api: on
- deferred: on
libraries:
- name: jinja2
version: "2.6"
- name: webapp2
version: "2.5.2"
- name: webob
version: "1.2.3"
- name: PIL
version: "1.1.7"
handlers:
- url: /remote_api
script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py
login: admin
secure: always
- url: /cron/.*
script: main.app
login: admin
secure: always
- url: /mapreduce/worker/.*
script: main.app
login: admin
secure: always
- url: /.*
script: main.app
secure: always