-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.cheap.yaml
57 lines (51 loc) · 1011 Bytes
/
app.cheap.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
runtime: python27
api_version: 1
threadsafe: no
#instance_class: F4_1G
#automatic_scaling:
# min_idle_instances: 10
env_variables:
AIRPRESS_CONFIG: config/config.yaml
builtins:
- deferred: on
handlers:
- url: /_ah/admin/interactive.*
script: google.appengine.ext.admin.application
login: admin
secure: always
- url: /_ah/queue/deferred
script: google.appengine.ext.deferred.deferred.application
login: admin
- url: /_app/[^/]*/config/
static_dir: config/assets/
secure: always
- url: /_app/[^/]*/assets/
static_dir: dist/
secure: always
- url: /_api/.*
script: app.main.api_app
secure: always
- url: .*
script: app.main.app
secure: always
libraries:
- name: endpoints
version: latest
- name: ssl
version: latest
- name: webapp2
version: "2.5.2"
- name: yaml
version: latest
- name: lxml
version: latest
skip_files:
- - ^(.*/)?.*~
- ^(.*/)?.*\.md$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?\.DS_Store$
- ^(.*/)?\.gitignore$
- ^\.git/.*
- ^node_modules/.*
- ^htmlcov/.*
- ^env/.*