-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.yaml
57 lines (47 loc) · 921 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
48
49
50
51
52
53
54
55
56
57
runtime: python27
api_version: 1
threadsafe: true
skip_files:
- .git/
- .gitingore
- node_modules/
- css/
- fonts/
- img/
- js/
- snd/
- index.html
- dev-app.yaml
- package.json
- package-lock.json
- README.md
handlers:
- url: /
static_files: dist/index.html
upload: dist/index.html
- url: /about
static_files: dist/about.html
upload: dist/about.html
- url: /favicon.ico
static_files: dist/favicon.ico
upload: dist/favicon.ico
- url: /index(.*)
static_files: dist/index.html
upload: dist/index.html
- url: /css/(.*)
static_files: dist/css/\1
upload: dist/css/(.*)
- url: /fonts/(.*)
static_files: dist/fonts/\1
upload: dist/fonts/(.*)
- url: /img/(.*)
static_files: dist/img/\1
upload: dist/img/(.*)
- url: /snd/(.*)
static_files: dist/snd/\1
upload: dist/snd/(.*)
- url: /js/(.*)
static_files: dist/js/\1
upload: dist/js/(.*)
- url: /api/servers.*
script: api.servers.app