-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.yaml
57 lines (44 loc) · 915 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
53
54
55
56
application: gdgbhdevfest2015
version: 1
runtime: python27
api_version: 1
threadsafe: yes
builtins:
- appstats: on
handlers:
# ---------------------------
#
# main static declarations
#
# ---------------------------
- url: /(favicon\.png)
mime_type: image/png
static_files: static/\1
upload: static/favicon\.png
- url: /(robots\.txt)
mime_type: text/plain
static_files: static/\1
upload: static/robots\.txt
- url: /(img|css|js|lib|bower_components|elements|data)/(.*)
static_files: static/\1/\2
upload: static/(img|css|js|lib|bower_components|elements|data)/(.*)
# ---------------------------
#
# routes
#
# ---------------------------
- url: /.*
script: main.app
libraries:
- name: webapp2
version: "2.5.2"
- name: webob
version: "1.2.3"
- name: markupsafe
version: "0.15"
- name: setuptools
version: "0.6c11"
- name: jinja2
version: "2.6"
- name: lxml
version: "2.3"