forked from julython/julython.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
56 lines (46 loc) · 971 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
55
56
application: julython
domain: www.julython.org
version: 1
runtime: cannula.runtime.Python
api_version: 1
threadsafe: true
env_variables:
DJANGO_SETTINGS_MODULE: 'july.settings'
builtins:
- appstats: on
- remote_api: on
- admin_redirect: on
- django_wsgi: on
- deferred: on
inbound_services:
- warmup
- channel_presence
libraries:
- name: django
version: "1.4"
- name: webapp2
version: "latest"
handlers:
- url: /static
static_dir: july/static_root
- url: /(favicon.ico|robots.txt)
static_files: july/static_root/\1
upload: /static/(.*)
- url: /__cron__.*
script: july.cron.app
login: admin
- url: /_ah/channel/(connected|disconnected)/
script: july.channel.app
- url: /api.*
script: july.api.app
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?assets/.*