forked from Polymer/old-docs-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
50 lines (40 loc) · 943 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
application: polymer-project
version: 2013-07-12
runtime: python27
api_version: 1
threadsafe: yes
#default_expiration: "0s"
handlers:
- url: /$
static_files: _site/index.html
upload: _site/index\.html
# Preserve old URL.
- url: /polymer/polymer.min.js
static_files: js/polymer.min.js
upload: js/polymer\.min\.js
- url: /polymer.min.js
static_files: js/polymer.min.js
upload: js/polymer\.min\.js
# Map unminified polymer in demos to minified version.
- url: /polymer-all/polymer/polymer.js$
static_files: js/polymer.min.js
upload: js/polymer\.min\.js
- url: /polymer-all
static_dir: polymer-all
- url: /(.*)/$
static_files: _site/\1/index.html
upload: _site/(.*)/index.html
- url: /
static_dir: _site
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.bak$
- ^(.*/)?node_modules