forked from cdhigh/KindleEar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
executable file
·53 lines (41 loc) · 929 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
#application: kindleear
#version: 1
runtime: python27
api_version: 1
threadsafe: true
instance_class: F1
#automatic_scaling:
# min_idle_instances: 1
# max_idle_instances: automatic # default value
# min_pending_latency: automatic # default value
# max_pending_latency: 30ms
# max_concurrent_requests: 50
libraries:
- name: lxml
version: "latest"
- name: PIL
version: "latest"
- name: jinja2
version: "latest"
- name: pycrypto
version: "latest"
inbound_services:
- mail
handlers:
- url: /robots.txt
static_files: static/robots.txt
upload: static/robots.txt
- url: /favicon.ico
static_files: static/favicon.ico
upload: static/favicon.ico
mime_type: image/x-icon
- url: /static
static_dir: static
application_readable: true
- url: /images
static_dir: images
application_readable: true
- url: /_ah/mail/.+
script: apps.handlemail.appmail
- url: /.*
script: apps.module_front.app