-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
73 lines (60 loc) · 1.29 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
#application: phantomtype-180814
#version: 1
runtime: go
api_version: go1
handlers:
- url: /hello
script: _go_app
- url: /prepare
script: _go_app
- url: /photo
script: _go_app
- url: /(.*\.css)
mime_type: text/css
static_files: dist/\1
upload: dist/(.*\.css)
- url: /(.*\.html)
mime_type: text/html
static_files: dist/\1
upload: dist/(.*\.html)
- url: /(.*\.ico)
mime_type: image/x-icon
static_files: dist/\1
upload: dist/(.*\.ico)
- url: /(.*\.js)
mime_type: text/javascript
static_files: dist/\1
upload: dist/(.*\.js)
- url: /(.*\.ttf)
mime_type: font/truetype
static_files: dist/\1
upload: dist/(.*\.ttf)
- url: /(.*\.woff)
mime_type: application/x-font-woff
static_files: dist/\1
upload: dist/(.*\.woff)
- url: /(.*\.xml)
mime_type: application/xml
static_files: dist/\1
upload: dist/(.*\.xml)
- url: /(.*\.(bmp|gif|ico|jpeg|jpg|png|svg))
static_files: dist/\1
upload: dist/(.*\.(bmp|gif|ico|jpeg|jpg|png|svg))
- url: /(.+)/
static_files: dist/\1/index.html
upload: dist/(.+)/index.html
- url: /
static_files: dist/index.html
upload: dist/index.html
skip_files:
- ^\.idea/.*
- ^\.git/.*
- ^\.github/.*
- ^\.next/.*
- ^node_modules/(.*/)?
- ^build/.*
- ^components/.*
- ^pages/.*
- ^exif_parse_dev/.*
- ^tmp/.*
- ^types/.*