-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.yaml.in
61 lines (57 loc) · 1.2 KB
/
app.yaml.in
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
application: eatoutberlin
version: %BRANCH
runtime: python27
api_version: 1
threadsafe: true
skip_files:
- ^(.*/)?.sass-cache/.*$
- ^(.*/)?.*\.coffee$
- ^(.*/)?.*\.scss$
- ^(.*/)?.*\.map$
- ^(.*/)?.*\.md$
- ^(.*/)?.*~$
- ^(.*/)?.git(.*/)?$
- ^config/.*$
- ^data/.*\.yaml$
- ^node_modules/.*$
- ^style/images/places/.*$
- ^test/.*$
- ^util/.*$
libraries:
- name: jinja2
version: latest
handlers:
- url: /debug/favicon.ico
static_files: style/images/favicon.png
upload: style/images/favicon.png
- url: /debug/images
static_dir: style/images
- url: /debug/src
static_dir: src
- url: /debug/lib
static_dir: lib
- url: /debug/stylesheets
static_dir: style/stylesheets
- url: /debug/templates
static_dir: templates
- url: /debug/dist
static_dir: dist
- url: /debug/data
static_dir: data
- url: /debug(.*)?
static_files: templates/index-debug.html
upload: templates/index-debug.html
- url: /favicon.ico
static_files: style/images/favicon.png
upload: style/images/favicon.png
- url: /images
static_dir: style/images
- url: /templates
static_dir: templates
- url: /dist
static_dir: dist
- url: /data
static_dir: data
- url: /(.*)?
static_files: templates/index.html
upload: templates/index.html