-
Notifications
You must be signed in to change notification settings - Fork 24
/
app.yaml
79 lines (59 loc) · 1.5 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
application: your-app-name-here
version: 1
runtime: python27
api_version: 1
threadsafe: no
# In production, uncomment line below.
# default_expiration: "30d"
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?tests$
builtins:
- appstats: on
- remote_api: on
handlers:
- url: /remote_api
script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py
login: admin
- url: /apple-touch-icon\.png
mime_type: image/png
static_files: static/apple-touch-icon.png
upload: static/apple-touch-icon.png
- url: /favicon\.ico
mime_type: image/png
static_files: static/favicon.ico
upload: static/favicon.ico
- url: /(robots\.txt|humans\.txt|crossdomain\.xml)
static_files: static/\1
upload: static/(robots\.txt|humans\.txt|crossdomain\.xml)
- url: /img/(.*\.(gif|png|jpg))
static_files: static/img/\1
upload: static/img/(.*\.(gif|png|jpg))
- url: /swf/(.*\.swf)
static_files: static/swf/\1
upload: static/swf/(.*\.swf)
- url: /css/(.*\.css)
mime_type: text/css
static_files: static/css/\1
upload: static/css/(.*\.css)
- url: /js/(.*\.js)
mime_type: text/javascript
static_files: static/js/\1
upload: static/js/(.*\.js)
- url: /audio/(.*\.(wav|mp3|ogg))
static_files: static/audio/\1
upload: static/audio/(.*\.(wav|mp3|ogg))
- url: /(.*\.html)
mime_type: text/html
static_files: static/\1
upload: static/(.*\.html)
- url: /.*
script: bootstrap.py