forked from sydney-linux-user-group/slug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
57 lines (44 loc) · 1.03 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
application: sydney-linux-user-group-hr
version: 9
runtime: python
api_version: 1
builtins:
- datastore_admin: on
- appstats: on
handlers:
- url: /favicon.ico
static_files: static/images/favicon.png
upload: static/images/favicon.ico
- url: /images
static_dir: static/images
- url: /css
static_dir: static/css
- url: /js
static_dir: static/js
- url: /third_party
static_dir: static/third_party
- url: /_ah/login_required
script: do_openid_login.py
- url: /event/add
login: admin
script: handler-admin.py
- url: /event/[a-zA-Z0-9]*/(edit|publish|email|addoffer|remoffer)
login: admin
script: handler-admin.py
- url: /admin/.*
script: $PYTHON_LIB/google/appengine/ext/admin
login: admin
- url: /talks
script: handler.py
login: required
- url: /.*
script: handler.py
skip_files:
- third_party/((?!(aeoid|python-gae-pytz)).*)/
- third_party/python-gae-pytz/(?!pytz)
- static/third_party/jquery.validation/(?!(.*.js|localization))
- third_party/aeoid/demo
- third_party/mkzip
- (.*/)*.git/
- .*/\..*
- .*/README