-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathapp.yaml
46 lines (39 loc) · 897 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
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: /images
static_dir: images
secure: always
- url: /(.*).(html|js|json|css)
static_files: \1.\2
upload: (.*)\.(html|js|json|css)
secure: always
- url: /$
static_files: index.html
upload: index\.html
http_headers:
Link: '</elements/elements.js>; rel=preload; as=script, </scripts/bundle.js>; rel=preload; as=script, </styles/app.css>; rel=preload; as=style'
# Access-Control-Allow-Origin: "*"
secure: always
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?bower\.json
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.bak$
- ^(.*/)?node_modules/.*
- ^(.*/).md|markdown
- ^(.*/)LICENSE