-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
107 lines (91 loc) · 1.7 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
application: "jaikuengine"
version: 1
runtime: python
api_version: 1
skip_files: |
^(.*/)?(
(app\.yaml)|
(app\.yml)|
(index\.yaml)|
(index\.yml)|
(#.*#)|
(.*~)|
(.*\.py[co])|
(.*/RCS/.*)|
(\..*)|
(manage.py)|
(simplejson/.*)|
(gdata/.*)|
(atom/.*)|
(tlslite/.*)|
(oauth/.*)|
(beautifulsoup/.*)|
(django/.*)|
(docutils/.*)|
(epydoc/.*)|
(appengine_django/management/commands/.*)|
(README)|
(CHANGELOG)|
(Makefile)|
(bin/.*)|
(images/ads/.*)|
(images/ext/.*)|
(wsgiref/.*)|
(elementtree/.*)|
(doc/.*)|
(profiling/.*)|
(vendor/.*)
)$
default_expiration: "1d"
handlers:
- url: /images
static_dir: images
secure: optional
- url: /image/(avatar_default.*)
static_files: image/\1
upload: image/avatar_default.*
secure: optional
- url: /image/default
static_dir: image/default
secure: optional
- url: /css
static_dir: css
secure: optional
- url: /js
static_dir: js
secure: optional
- url: /static
static_dir: static
secure: optional
- url: /themes
static_dir: themes
secure: optional
- url: /favicon.ico
static_files: static/favicon.ico
upload: static/favicon.ico
secure: optional
- url: /crossdomain.xml
static_files: static/crossdomain.xml
upload: static/crossdomain.xml
secure: optional
- url: /robots.txt
static_files: static/robots.txt
upload: static/robots.txt
secure: optional
- url: /remote_api
script: "$PYTHON_LIB/google/appengine/ext/remote_api/handler.py"
login: admin
secure: optional
- url: /api/process_queue
script: "main.py"
secure: optional
- url: /_ah/queue/default
script: "main.py"
login: admin
secure: optional
- url: .*
script: "main.py"
secure: optional
# login: admin
inbound_services:
- xmpp_message