forked from piskelapp/piskel-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
95 lines (74 loc) · 2.12 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
89
90
91
92
93
94
95
application: piskel-app
version: alpha
runtime: python27
api_version: 1
threadsafe: yes
skip_files:
- ^(.*/)?(\.git/.*)$
handlers:
- url: /favicon\.ico
static_files: static/resources/favicon.ico
upload: static/resources/favicon\.ico
- url: /robots\.txt
static_files: robots.txt
upload: robots\.txt
- url: /google392c8e9117089539\.html
static_files: static/google392c8e9117089539.html
upload: static/google392c8e9117089539\.html
- url: /static/resources/(.*\.svg)
static_files: static/resources/\1
upload: static/resources/(.*\.svg)
mime_type: image/svg+xml
- url: /static/resources/(.*\.eot)
static_files: static/resources/\1
upload: static/resources/(.*\.eot)
mime_type: application/vnd.ms-fontobject
- url: /static/resources/(.*\.ttf)
static_files: static/resources/\1
upload: static/resources/(.*\.ttf)
mime_type: application/octet-stream
- url: /static/resources/(.*\.woff)
static_files: static/resources/\1
upload: static/resources/(.*\.woff)
mime_type: application/x-woff
- url: /static/resources/(.*\.png)
static_files: static/resources/\1
upload: static/resources/(.*\.png)
mime_type: image/png
- url: /static
static_dir: static
- url: /p/(.*\.svg)
static_files: static/editor/\1
upload: static/editor/(.*\.svg)
mime_type: image/svg+xml
- url: /p/(.*\.eot)
static_files: static/editor/\1
upload: static/editor/(.*\.eot)
mime_type: application/vnd.ms-fontobject
- url: /p/(.*\.ttf)
static_files: static/editor/\1
upload: static/editor/(.*\.ttf)
mime_type: application/octet-stream
- url: /p/(.*\.woff)
static_files: static/editor/\1
upload: static/editor/(.*\.woff)
mime_type: application/x-woff
- url: /p/(.*\.png)
static_files: static/editor/\1
upload: static/editor/(.*\.png)
mime_type: image/png
- url: /p/(.*\.(?:css|js|gif))
static_files: static/editor/\1
upload: static/editor/(.*\.(css|js|gif))
- url: /p/templates(?:.*?)/(.*\.html)
static_files: static/editor/templates/\1
upload: static/editor/templates/(.*\.html)
- url: /.*
script: main.app
libraries:
- name: webapp2
version: "2.5.1"
- name: jinja2
version: "2.6"
- name: lxml
version: "latest"