-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.yaml
66 lines (53 loc) · 1.14 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
runtime: python27
api_version: 1
threadsafe: true
builtins:
- remote_api: on
- appstats: off
- deferred: on
handlers:
- url: /favicon\.ico
static_files: static/img/triceratops_favicon.ico
upload: static/img/triceratops_favicon.ico
- url: /static
static_dir: static
- url: /static/css
static_dir: static/css
- url: /static/js
static_dir: static/js
- url: /job/.*
script: WhySaurus.app
login: admin
secure: always
- url: /admin
script: WhySaurus.app
secure: always
- url: /gae_mini_profiler/static
static_dir: gae_mini_profiler/static
- url: /gae_mini_profiler/.*
script: gae_mini_profiler.main.application
- url: /.*
script: WhySaurus.app
secure: always
libraries:
- name: django
version: latest
- name: markupsafe
version: "0.15"
- name: setuptools
version: "0.6c11"
- name: jinja2
version: "2.6"
# manually require webob 1.2.3 so that request.json_body works - see https://github.com/graphql-python/graphene-gae/issues/24
- name: webob
version: 1.2.3
- name: webapp2
version: latest
skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- ^.*/node_modules/.*$
- node_modules