-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
executable file
·77 lines (59 loc) · 1.13 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
runtime: python27
api_version: 1
threadsafe: true
default_expiration: "99d"
inbound_services:
- warmup
handlers:
- url: /favicon.ico
static_files: static/favicon.ico
upload: static/favicon\.ico
- url: /favicons
static_dir: static/favicons
- url: /images
static_dir: images
- url: /static
static_dir: static
- url: /(.*\.(gif|png|jpg|css|js|ico)$)
static_files: \1
upload: (.*\.(gif|png|jpg|css|js|ico)$)
- url: /js
static_dir: js
- url: /tasks/
script: actionpotential.app
login: admin
- url: /dist/src
static_dir: dist/src
- url: /dist/build
static_dir: dist/build
- url: /admin/gauth.*
script: actionpotential.app
login: admin
secure: always
- url: /docs
static_dir: docs/_build/html
- url: /.*
script: actionpotential.app
builtins:
- deferred: on
- remote_api: on
libraries:
- name: django
version: "1.2"
- name: webapp2
version: "2.5.2"
- name: jinja2
version: "2.6"
- name: ssl
version: "latest"
skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*\.scss$
- ^(.*/)?.*\.less$
- ^(.*/)?.*\.woff2$
- ^(.*/)?.*\.db$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- ^node_modules/.*$