forked from limhenry/cerium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
88 lines (71 loc) · 1.79 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
application: projectcerium
version: 1
runtime: python27
api_version: 1
threadsafe: yes
handlers:
# - url: /(.+)
# static_files: public/\1
# upload: public/(.*)
- url: /bower_components/(.+)
static_files: public/bower_components/\1
upload: public/bower_components/(.*)
- url: /elements/(.+)
static_files: public/elements/\1
upload: public/elements/(.*)
- url: /src/(.+)
static_files: public/src/\1
upload: public/src/(.*)
- url: /data/(.+)
static_files: public/data/\1
upload: public/data/(.*)
- url: /sw-import.js
static_files: public/sw-import.js
upload: public/sw-import.js
- url: /elements.html
static_files: public/elements.html
upload: public/elements.html
- url: /build.html
static_files: public/build.html
upload: public/build.html
- url: /humans.*
static_files: public/humans.txt
upload: public/humans.txt
- url: /LICENSE.*
static_files: public/LICENSE.txt
upload: public/LICENSE.txt
- url: /
static_files: public/index.html
upload: public/index.html
- url: /speaker.*
static_files: public/index.html
upload: public/index.html
- url: /agenda.*
static_files: public/index.html
upload: public/index.html
- url: /getting.*
static_files: public/index.html
upload: public/index.html
- url: /register.*
static_files: public/index.html
upload: public/index.html
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?tests$
- ^(.*/)?test$
- ^test/(.*/)?
- ^COPYING.LESSER
- ^README\..*
- \.gitignore
- ^\.git/.*
- \.*\.lint$
- ^fabfile\.py
- ^testrunner\.py
- ^grunt\.js
- ^node_modules/(.*/)?