-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.yaml
54 lines (51 loc) · 1015 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
53
54
application: cwrulove
module: default
version: 1-0-2
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /api/.*
script: main.app
secure: always
- url: /keys/?.*
script: main.app
login: admin
secure: always
- url: /subscriptions/?.*
script: main.app
login: admin
secure: always
- url: /aliases/?.*
script: main.app
login: admin
secure: always
- url: /robots.txt
static_files: static/robots.txt
upload: static/robots.txt
secure: optional
- url: /static
static_dir: static
secure: always
- url: /_themes/(.*)/img/(.*)
static_files: themes/\1/static/img/\2
upload: themes/(.*)/static/img/(.*)
secure: always
login: optional
- url: .* # Anything not explicitly listed above
script: main.app
login: required
secure: always
builtins:
- remote_api: on
skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*~$
- ^(.*/)?\..*$
- ^YelpLove.egg-info(/.*)?$
- ^config-example.py$
- ^google_appengine(/.*)?$
- ^tmp(/.*)?$
- ^virtualenv_.*$