-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
56 lines (42 loc) · 1.3 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
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /demo/_next/static
static_dir: demo/static
- url: /demo(/?)
static_files: demo/server/pages/index.html
upload: demo/server/pages/index.html
- url: /demo/(.*)
static_files: demo/server/pages/\1
upload: demo/server/pages/(.*)
- url: /tutorial/_next/static
static_dir: tutorial/static
- url: /tutorial(/?)
static_files: tutorial/server/pages/index.html
upload: tutorial/server/pages/index.html
# Can these manual ones be auto-genned?
- url: /tutorial/getting-started
static_files: tutorial/server/pages/getting-started.html
upload: tutorial/server/pages/getting-started.html
- url: /tutorial/error-handling
static_files: tutorial/server/pages/error-handling.html
upload: tutorial/server/pages/error-handling.html
- url: /tutorial/rule-configs
static_files: tutorial/server/pages/rule-configs.html
upload: tutorial/server/pages/rule-configs.html
- url: /tutorial/(.*)
static_files: tutorial/server/pages/\1
upload: tutorial/server/pages/(.*)
- url: /docs(/?)
static_files: docs/index.html
upload: docs/index.html
- url: /docs/(.*)
static_files: docs/\1
upload: docs/(.*)/
- url: /
static_files: homepage/index.html
upload: homepage/index.html
- url: /(.*)
static_files: homepage/\1
upload: homepage/(.*)