-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
54 lines (45 loc) · 875 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
application: fakeid # Using this to run tests and local server
version: 1
runtime: python27
api_version: 1
threadsafe: true
automatic_scaling:
min_idle_instances: 3
min_pending_latency: 20ms
max_pending_latency: 300ms
handlers:
- url: /.*
script: web.app
libraries:
- name: jinja2
version: 2.6
- name: pycrypto
version: 2.6
- name: PIL
version: latest
- name: markupsafe
version: "latest"
- name: setuptools
version: "0.6c11"
- name: ssl
version: "latest"
builtins:
- deferred: True
- remote_api: True
- appstats: True
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.(bak|scss)$
- ^(.*/)?stylesource
- ^(.*/)?tests/.*
- ^(.*/)?env/.*
- ^(.*/)?venv/.*
- ^(.*/)?google_appengine/.*