-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
43 lines (35 loc) · 822 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
application: dark-foundry-91520
version: 1
runtime: python27
api_version: 1
threadsafe: true
libraries:
- name: PIL
version: latest
handlers:
- url: /_ah/(mapreduce|queue|warmup).*
script: scaffold.wsgi.application
login: admin
secure: always
- url: /static/admin/
static_dir: sitepackages/django/contrib/admin/static/admin/
secure: always
- url: /static/devBlag/
static_dir: devBlag/static/devBlag/
secure: always
# Set Django admin to be login:admin as well as Django's is_staff restriction
- url: /admin.*
script: scaffold.wsgi.application
secure: always
login: admin
- url: /.*
script: scaffold.wsgi.application
secure: always
skip_files:
- manage.py
- README.md
- install_deps
- requirements.txt
- sitepackages/google_appengine*
- \.storage.*
- (.*)\.pyc