-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
77 lines (62 loc) · 1.3 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
application: libcoffeeblog-hrd
version: 1
runtime: python27
api_version: 1
threadsafe: true
default_expiration: "5d"
builtins:
- appstats: on
- admin_redirect: on
- deferred: on
- remote_api: on
libraries:
- name: jinja2
version: "latest"
- name: markupsafe
version: "latest"
- name: PIL
version: "latest"
- name: lxml
version: "latest"
inbound_services:
- warmup
handlers:
- url: /favicon.ico
static_files: static/favicon.ico
upload: static/favicon.ico
- url: /robots.txt
static_files: static/robots.txt
upload: static/robots.txt
- url: /_gae_mini_profiler/static
static_dir: flaskext/gae_mini_profiler/static
- url: /static/img/
static_dir: static
- url: /static
static_dir: static
- url: /remote
script: google.appengine.ext.remote_api.handler.application
login: admin
- url: /admin.*
script: google.appengine.ext.admin.application
login: admin
- url: /stats.*
script: google.appengine.ext.appstats.ui.app
login: admin
- url: /_ereporter.*
script: google.appengine.ext.ereporter.report_generator.application
login: admin
- url: .*
script: main.app
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.bak$
- ^google$
- ^flask-appengine-template$