-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.yaml
More file actions
43 lines (35 loc) · 818 Bytes
/
app.yaml
File metadata and controls
43 lines (35 loc) · 818 Bytes
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
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /_ah/(mapreduce|queue|warmup|start|stop).*
script: slidesprodv2.wsgi.application
login: admin
secure: always
- url: /_ah/internalupload.*
script: slidesprodv2.wsgi.application
secure: always
- url: /static
static_dir: static/
secure: always
# Set Django admin to be login:admin as well as Django's is_staff restriction
- url: /admin.*
script: slidesprodv2.wsgi.application
secure: always
login: admin
- url: /.*
script: slidesprodv2.wsgi.application
secure: always
skip_files:
- ^manage\.py$
- ^README\.md$
- ^install_deps$
- ^requirements/.*\.txt$
- ^sitepackages/dev.*
- ^.*\.(egg|dist)-info/.*$
# Defaults.
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$