forked from Yelp/beans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
70 lines (57 loc) · 1.11 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
api_version: 1
runtime: python27
threadsafe: true
instance_class: F2
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /bootstrap
static_dir: bootstrap
- url: /css
static_dir: static/css
- url: /img
static_dir: static/img
- url: /js
static_dir: dist/bundle
- url: /tasks/.*
login: admin
script: webapp.app
auth_fail_action: unauthorized
secure: always
- url: /preferences/.*
script: webapp.app
login: admin
auth_fail_action: unauthorized
secure: always
- url: /dashboard/.*
script: webapp.app
login: admin
auth_fail_action: unauthorized
secure: always
- url: /subscription
script: webapp.app
login: admin
auth_fail_action: unauthorized
secure: always
- url: /rule
script: webapp.app
login: admin
auth_fail_action: unauthorized
secure: always
- url: /.* # Anything not explicitly listed above
script: webapp.app
login: required
secure: always
libraries:
- name: jinja2
version: latest
- name: ssl
version: latest
skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- node_modules/