forked from kevdonk/devsummit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.yaml
More file actions
51 lines (42 loc) · 989 Bytes
/
app.yaml
File metadata and controls
51 lines (42 loc) · 989 Bytes
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
application: chromedevsummit-site
version: v20161103
runtime: python27
api_version: 1
threadsafe: true
skip_files:
- (^node_modules/.*)
- (^.git/.*)
- .DS_Store
handlers:
- url: /devsummit/static/third_party/vrview/(.*)
static_files: static/third_party/vrview/\1
expiration: "1d"
upload: static/third_party/vrview/(.*)
secure: always
- url: /devsummit/static/third_party/fonts/(.*)
static_files: static/third_party/fonts/\1
expiration: "1d"
upload: static/third_party/fonts/(.*)
secure: always
- url: /devsummit/static/images/(.*)
static_files: static/images/\1
expiration: "1d"
upload: static/images/(.*)
secure: always
- url: /devsummit
script: redirector.app
secure: always
- url: /devsummit/(.*)
script: main.app
secure: always
- url: /devsummit/LICENSE
static_files: dist/LICENSE
expiration: "7d"
mime_type: text/plain
upload: dist/LICENSE
secure: always
libraries:
- name: webapp2
version: latest
- name: jinja2
version: latest