-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
47 lines (39 loc) · 835 Bytes
/
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
# [START runtime]
runtime: python27
threadsafe: yes
# [END runtime]
handlers:
- url: /(.*\.woff)
mime_type: application/x-font-woff
static_files: dist/\1
upload: dist/(.*\.woff)
- url: /(.*\.woff2)
mime_type: font/woff2
static_files: dist/\1
upload: dist/(.*\.woff2)
- url: /favicon.ico
static_files: dist/favicon.ico
upload: dist/favicon.ico
- url: /(.*\.(gif|png|jpg)(|\.map))$
static_files: dist/\1
upload: dist/(.*)(|\.map)
- url: /dist
static_dir: dist
- url: /.*
static_files: index.html
upload: index.html
# Temporary setting to keep gcloud from uploading not required files for deployment
skip_files:
- ^node_modules$
- ^app\.yaml
- ^README\..*
- \.gitignore
- ^\.git$
- ^grunt\.js
- ^src$
- ^e2e$
- \.editorconfig
- ^karma\.config\.js
- ^package\.json
- ^protractor\.conf\.js
- ^tslint\.json