-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathapp.yaml
54 lines (43 loc) · 964 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
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /bower_components
static_dir: bower_components
secure: always
- url: /data
static_dir: data
secure: always
- url: /fonts
static_dir: fonts
secure: always
- url: /images
static_dir: images
secure: always
- url: /src
static_dir: src
secure: always
- url: /service-worker.js
static_files: service-worker.js
upload: service-worker.js
secure: always
- url: /manifest.json
static_files: manifest.json
upload: manifest.json
secure: always
- url: /NASA-M-16-21-OCIO-Memo.pdf
static_files: NASA-M-16-21-OCIO-Memo.pdf
upload: NASA-M-16-21-OCIO-Memo.pdf
secure: always
- url: /NASA-M-16-21-Framework.pdf
static_files: NASA-M-16-21-Framework.pdf
upload: NASA-M-16-21-Framework.pdf
secure: always
- url: /code.json
static_files: code.json
upload: code.json
secure: always
- url: /.*
static_files: index.html
upload: index.html
secure: always