forked from DocSavage/bloog
-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.yaml
57 lines (49 loc) · 857 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
57
application: thom-nichols
version: b
runtime: python27
api_version: 1
threadsafe: true
libraries:
- name: django
version: "1.2"
- name: webob
version: "1.1.1"
- name: pycrypto
version: 'latest'
handlers:
- url: /static
static_dir: static
- url: /images
static_dir: static/images
- url: /favicon\.ico
static_files: static/favicon.ico
upload: static/favicon.ico
- url: /robots\.txt
static_files: static/robots.txt
upload: static/robots.txt
#- url: /admin/shell.*
# script: handlers/shell/shell.py
# login: admin
- url: .*
script: main.application
skip_files: |
^(.*/)?(
(app\.yaml)|
(app\.yml)|
(index\.yaml)|
(index\.yml)|
(#.*#)|
(.*~)|
(.*\.py[co])|
(.*/RCS/.*)|
(\..*)|
(dev/.*)|
(tests/.*)|
(docs/.*)|
(static/hosted/.*)|
(.*\.markdown)|(.*\.md)|
(license\.txt)|
(setup\.py)|
(README.*)|
(Thumbs\.db)
)$