-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.yaml.template
66 lines (49 loc) · 1.18 KB
/
app.yaml.template
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
application: weavr-ptk-dev
version: 1
runtime: python27
api_version: 1
threadsafe: false
builtins:
# we don't seem to use this
#- datastore_admin: on
#- appstats: on
libraries:
- name: PIL
version: "1.1.7"
- name: django
# djangoappengine will swap this out with 1.3...
version: latest
inbound_services:
- warmup
handlers:
- url: /media
static_dir: media
- url: /whistling/static
static_dir: whistling/static
- url: /favicon.ico
static_files: media/images/favicon.ico
upload: media/images/favicon.ico
expiration: 1d
- url: /robots.txt
static_files: media/static/robots.txt
upload: media/static/robots.txt
expiration: 1d
# for django-admin static files, serve the entire django source zipfile as static.
- url: /django-nonrel/.*
script: webapp.zipserve.application
- url: /remote_api
script: google.appengine.ext.remote_api.handler.application
login: admin
- url: /stats.*
script: google.appengine.ext.appstats.ui.app
- url: /runner/.*
script: main.application
login: admin
- url: /errormon/delete_old/.*
script: main.application
login: admin
- url: /dreamer/admin/.*
script: main.application
login: admin
- url: /.*
script: main.application