-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
63 lines (42 loc) · 1010 Bytes
/
app.yaml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
application: platinummirror-x1
version: 2
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /favicon.ico
static_files: application/static/img/favicon.ico
upload: application/static/img/favicon.ico
- url: /robots.txt
static_files: application/static/robots.txt
upload: application/static/robots.txt
- url: /_gae_mini_profiler/static
static_dir: flaskext/gae_mini_profiler/static
- url: /static
static_dir: application/static
- url: .*
script: application.app
libraries:
- name: webapp2
version: "2.5.2"
- name: jinja2
version: "2.6"
- name: markupsafe
version: "0.15"
- name: yaml
version: "3.10"
builtins:
# Enable for development only
# - appstats: on
- remote_api: on
- deferred: on
inbound_services:
- warmup
error_handlers:
- file: error_pages/default_error.html
- error_code: over_quota
file: error_pages/over_quota.html
- error_code: dos_api_denial
file: error_pages/dos_api_denial.html
- error_code: timeout
file: error_pages/timeout.html