forked from googlearchive/voice-memos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
117 lines (101 loc) · 2.05 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
108
109
110
111
112
113
114
115
116
117
application: voice-memos
version: v20150501
runtime: python27
api_version: 1
threadsafe: true
skip_files:
- node_modules
- tests
- src
handlers:
- url: /
script: template.app
secure: always
- url: /images/(.*)
static_files: dist/images/\1
expiration: "365d"
upload: dist/images/(.*)
secure: always
- url: /sw.js
static_files: dist/scripts/sw.js
expiration: "1s"
upload: dist/scripts/sw.js
secure: always
- url: /favicon.ico
static_files: dist/favicon.ico
expiration: "365d"
upload: dist/favicon.ico
secure: always
- url: /manifest.json
static_files: dist/manifest.json
expiration: "1s"
upload: dist/manifest.json
secure: always
- url: /scripts/(.*)
static_files: dist/scripts/\1
expiration: "365d"
upload: dist/scripts/(.*)
secure: always
- url: /third_party/(.*)
static_files: dist/third_party/\1
expiration: "365d"
upload: dist/third_party/(.*)
secure: always
- url: /styles/(.*)
static_files: dist/styles/\1
expiration: "1d"
upload: dist/styles/(.*)
secure: always
application_readable: true
- url: /LICENSE
static_files: dist/LICENSE
expiration: "7d"
mime_type: text/plain
upload: dist/LICENSE
secure: always
- url: /(.*)
script: template.app
secure: always
- url: /src/(.*)
static_files: src/\1
upload: src/(.*)
secure: always
libraries:
- name: webapp2
version: latest
- name: jinja2
version: latest
pagespeed:
disabled_rewriters:
- add_instrumentation
- CombineJs
- ConvertMetaTags
- FallbackRewriteCssUrls
- FlattenCssImports
- FlushSubresources
- ImageConvertGifToPng
- ImageConvertToJpeg
- ImageConvertToWebpLossless
- ImageResize
- InlineImages
- InlineImportToLink
- InlinePreviewImages
- InsertDnsPrefetch
- JsOptimize
- LazyloadImages
- MinifyCss
- MoveCssToHead
- ProxyCss
- ProxyImages
- ProxyJs
enabled_rewriters:
- CombineCss
- InlineCss
- WebpOptimization
- PrioritizeCriticalCss
- ImageJpegSubsampling
- ImageProgressiveJpeg
- ImageRecompressJpeg
- ImageRecompressPng
- ImageStripColorProfile
- ImageStripMetadata