-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
55 lines (43 loc) · 834 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: balioldboys
version: 1
runtime: python27
api_version: 1
threadsafe: yes
builtins:
- remote_api: on
libraries:
- name: PIL
version: "latest"
- name: MySQLdb
version: "latest"
- name: ssl
version: "latest"
inbound_services:
- warmup
handlers:
- url: /_ah/queue/deferred
script: djangoappengine.deferred.handler.application
login: admin
- url: /_ah/stats/.*
script: djangoappengine.appstats.application
- url: /media/admin
static_dir: django/contrib/admin/media
expiration: '0'
- url: /static
static_dir: STATIC_URL
- url: /.*
script: djangoappengine.main.application
skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- ^(static/.*)$
- ^(env/.*)$
- ^(libds/.*)$
- ^(sqlite3.db)$
- ^(fixtures/.*)$
- ^(.*/)?\.sh$
- ^(.*/)?\.json$
- ^(.*/)?\.db$