forked from onejgordon/flow-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
97 lines (78 loc) · 1.48 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
runtime: python27
api_version: 1
threadsafe: true
default_expiration: "1d"
inbound_services:
- warmup
handlers:
- url: /favicon.ico
static_files: static/favicon.ico
upload: static/favicon\.ico
- url: /(.*\.(appcache|manifest))
mime_type: text/cache-manifest
static_files: static/\1
upload: static/(.*\.(appcache|manifest))
expiration: "0m"
- url: /images
static_dir: images
expiration: "99d"
- url: /dist/src
static_dir: dist/src
- url: /dist/build
static_dir: dist/build
- url: /static
static_dir: static
expiration: "99d"
- url: /cron/.*
script: flow.app
login: admin
- url: /admin/gauth.*
script: flow.app
login: admin
secure: always
- url: /humans.txt
static_files: humans.txt
upload: humans.txt
- url: /robots.txt
static_files: robots.txt
upload: robots.txt
- url: /js
static_dir: js
- url: /tasks/
script: flow.app
login: admin
- url: /.*
script: flow.app
secure: always
builtins:
- deferred: on
- remote_api: on
skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*\.scss$
- ^(.*/)?.*\.less$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- ^(node_modules/.*)
- .*node_modules
- ^design/.*$
- ^lib/.*(\.(?!py)).*$
- ^scripts/.*$
- ^env/.*$
- ^\.Python$
- ^bin/.*$
libraries:
- name: django
version: "1.2"
- name: webapp2
version: "2.5.1"
- name: jinja2
version: "2.6"
- name: lxml
version: "2.3.5"
- name: pycrypto
version: "2.6"
env_variables:
GOOGLE_APPLICATION_CREDENTIALS: 'settings/genzai-app-f02b0e933bb4.json'