-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.yaml
More file actions
47 lines (34 loc) · 684 Bytes
/
app.yaml
File metadata and controls
47 lines (34 loc) · 684 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
44
45
46
application: opinionext
version: 2
runtime: python27
api_version: 1
threadsafe: true
default_expiration: "7d"
handlers:
- url: /favicon.ico
static_files: images/favicon.png
upload: images/favicon.png
- url: /robots.txt
static_files: css/robots.txt
upload: css/robots.txt
- url: /static
static_dir: static
- url: /.*
script: main.app
builtins:
- appstats: on
error_handlers:
- file: default_error.html
- error_code: over_quota
file: over_quota.html
- error_code: dos_api_denial
file: dos_api_denial.html
- error_code: timeout
file: timeout.html
libraries:
- name: jinja2
version: latest
- name: numpy
version: "1.6.1"
- name: django
version: "1.2"