-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
72 lines (61 loc) · 1.22 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
api_version: 1
runtime: python27
threadsafe: true
instance_class: F4_1G
libraries:
- name: lxml
version: latest
- name: ssl
version: latest
- name: pycrypto
version: latest
- name: jinja2
version: 2.6
- name: webapp2
version: latest
- name: PIL
version: latest
- name: yaml
version: latest
handlers:
- url: /_ah/admin/interactive.*
script: google.appengine.ext.admin.application
login: admin
secure: always
- url: /_ah/api/.*
script: jetway.main.endpoints_app
- url: /_app/[^/]*/config/(.*\.(svg|png|gif|jpg))$
static_files: config/\1
upload: config/.*\.(svg|png|gif|jpg)$
- url: /_app/[^/]*/static/css
static_dir: dist/css
- url: /_app/[^/]*/static/js
static_dir: dist/js
- url: /_app/[^/]*/static/html
static_dir: jetway/frontend/static/html
- url: /_app/[^/]*/static/images
static_dir: jetway/frontend/static/images
- url: /.*
script: jetway.main.app
skip_files:
- ^(.*/)?#.*#
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*\.so$
- ^(.*/)?.*\_test.(html|js|py)$
- ^(.*/)?.*~
- ^(.*/)?\..*
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?run_tests.py
- bower_components
- env
- htmlconv
- lib/Crypto
- lib/Pillow
- lib/PIL
- node_modules
- testing
- ^.*.example
- lib/Pillow