-
Notifications
You must be signed in to change notification settings - Fork 15
/
app.yaml
81 lines (62 loc) · 1.39 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
application: g-apps-sca001
version: 1
runtime: go
api_version: go1
handlers:
- url: /
script: _go_app
- url: /contacts
script: _go_app
- url: /contacts/export
script: _go_app
- url: /contacts/exportxml
script: _go_app
- url: /contacts/delete
script: _go_app
- url: /set-action
script: _go_app
- url: /import
script: _go_app
- url: /import/do
script: _go_app
- url: /export
script: _go_app
- url: /delete
script: _go_app
- url: /(.*\.css)
mime_type: text/css
static_files: static/\1
upload: static/(.*\.css)
- url: /(.*\.html)
mime_type: text/html
static_files: static/\1
upload: static/(.*\.html)
- url: /(.*\.htm)
mime_type: text/html
static_files: static/\1
upload: static/(.*\.htm)
- url: /(.*\.js)
mime_type: text/javascript
static_files: static/\1
upload: static/(.*\.js)
- url: /(.*\.txt)
mime_type: text/plain
static_files: static/\1
upload: static/(.*\.txt)
- url: /(.*\.xml)
mime_type: application/xml
static_files: static/\1
upload: static/(.*\.xml)
# font files
- url: /(.*\.(woff|ttf|eot|svg))
mime_type: font/opentype
static_files: static/\1
upload: static/(.*\.(woff|ttf|eot|svg))
# image files
- url: /(.*\.(bmp|gif|ico|jpeg|jpg|png|pdf))
static_files: static/\1
upload: static/(.*\.(bmp|gif|ico|jpeg|jpg|png|pdf))
# index files
- url: /(.+)/
static_files: static/\1/index.html
upload: static/(.+)/index.html