forked from psychology-of-programming/ppig.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
52 lines (50 loc) · 883 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
runtime: python27
threadsafe: true
api_version: 1
handlers:
- url: /
static_files: public/index.html
upload: /
- url: /css
static_dir: public/css
#- url: /publication
# static_files: public/publication/index.html
# upload: /
# - url: /talk
# static_files: public/talk/index.html
# upload: /
- url: /fonts
static_dir: public/fonts
http_headers:
Access-Control-Allow-Origin: '*'
- url: /js
static_dir: public/js
- url: /img
static_dir: public/img
- url: /(.*)/$
static_files: public/\1/index.html
upload: .*\.html$
skip_files: |
^(.*/)?(
(archetypes/.*)|
(app\.yaml)|
(app\.yml)|
(index\.yaml)|
(index\.yml)|
(config\.yaml)|
(#.*#)|
(.*~)|
(.*\.py[co])|
(.*\.po)|
(.*\.pot)|
(\..*)|
(manage\.py)|
(README\.md)|
(LICENSE)|
(content\/.*)|
(data\/.*)|
(static\/.*)|
(layouts\/.*)|
(\.git\/.*)|
(\.gitignore)|
)$