forked from glitchdotcom/WebPutty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
88 lines (67 loc) · 1.9 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
application: your-gae-application
version: 1
runtime: python
api_version: 1
default_expiration: "365d"
inbound_services:
- mail
- channel_presence
- warmup
handlers:
- url: /favicon\.ico
static_files: static/img/favicon.ico
upload: static/img/favicon\.ico
mime_type: image/x-icon
- url: /respond-proxy\.html
static_files: static/respond/respond-proxy.html
upload: static/respond/respond-proxy\.html
- url: /static/img/(.*\.(gif|png|jpg))
static_files: static/img/\1
upload: static/img/(.*\.(gif|png|jpg))
- url: /static/img/docs/(.*\.(gif|png|jpg))
static_files: static/img/docs/\1
upload: static/img/docs/(.*\.(gif|png|jpg))
- url: /static/css/(.*\.css)
mime_type: text/css
static_files: static/css/\1
upload: static/css/(.*\.css)
- url: /static/js/(.*\.js)
mime_type: text/javascript
static_files: static/js/\1
upload: static/js/(.*\.js)
- url: /static/codemirror/(.*\.css)
mime_type: text/css
static_files: static/codemirror/\1
upload: static/codemirror/(.*\.css)
- url: /static/codemirror/(.*\.js)
mime_type: text/javascript
static_files: static/codemirror/\1
upload: static/codemirror/(.*\.js)
- url: /_ah/mail/.+
script: incoming_email_handler.py
login: admin
- url: /_migrate
script: bootstrap.py
login: admin
- url: /gae_mini_profiler/static/js/(.*\.tmpl)
mime_type: text/html
static_files: libs/gae_mini_profiler/static/js/\1
upload: libs/gae_mini_profiler/static/js/(.*\.tmpl)
- url: /gae_mini_profiler/static
static_dir: libs/gae_mini_profiler/static
- url: /gae_mini_profiler/.*
script: libs/gae_mini_profiler/main.py
- url: /livecount/counter_admin
script: libs/livecount/counter_admin.py
login: admin
- url: /livecount/.*
script: libs/livecount/counter.py
login: admin
- url: /tasks/.*
script: bootstrap.py
login: admin
- url: .*\.(jpg|gif|png)
static_files: static/img/404.png
upload: static/img/404.png
- url: .*
script: bootstrap.py