-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.yaml
68 lines (52 loc) · 1.15 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
application: html5slides
version: redesign
runtime: python
api_version: 1
default_expiration: "30d"
handlers:
# Server appropriate mimetype for certain static content.
- url: /(.*\.(appcache|manifest))
static_files: \1
mime_type: text/cache-manifest
upload: (.*\.(appcache|manifest))
expiration: "0s"
- url: /(.*\.mp4)
static_files: \1
mime_type: video/mp4
upload: /(.*\.mp4)
- url: /(.*\.webm)
static_files: \1
mime_type: video/webm
upload: /(.*\.webm)
- url: /(.*\.(ogg|oga))
static_files: \1
mime_type: audio/ogg
upload: /(.*\.(ogg|oga))
- url: /(.*\.ogv)
static_files: \1
mime_type: video/ogg
upload: /(.*\.ogv)
- url: /(.*\.mp3)
static_files: \1
mime_type: audio/mpeg
upload: /(.*\.mp3)
- url: /src/svg/(.*\.svg)
static_files: src/svg/\1
mime_type: image/svg+xml
upload: src/svg/(.*\.svg)
# Other static files.
- url: /src
static_dir: src
- url: /styles
static_dir: styles
- url: /js
static_dir: js
- url: /disclaimer.html
static_files: disclaimer.html
upload: disclaimer.html
- url: /favicon.ico
static_files: favicon.ico
upload: favicon.ico
- url: /
static_files: html5.html
upload: html5.html