forked from Arachnid/bloggart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
54 lines (41 loc) · 924 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: namanlab
version: 1_6
runtime: python
api_version: 1
skip_files: |
^(.*/)?(
(app\.yaml)|
(app\.yml)|
(index\.yaml)|
(index\.yml)|
(#.*#)|
(.*~)|
(.*\.py[co])|
)$
handlers:
- url: /remote_api
script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py
login: admin
- url: /portfolio
static_files: content/portfolio_design.pdf
upload: content/portfolio_design.pdf
- url: /projects
static_files: content/portfolio_hci.pdf
upload: content/portfolio_hci.pdf
#- url: /content/r/([^/]+)
# static_files: content/r/\1
#upload: content/r/([^/]+)
- url: /content/([^/]+)/(.*)
static_files: content/\1/\2
upload: content/[^/]+/.*
- url: /_ah/queue/deferred
script: deferred.py
login: admin
- url: /admin/.*
script: admin.py
login: admin
- url: /static/([^/]+)/(.*)
static_files: themes/\1/static/\2
upload: themes/[^/]+/static/.*
- url: /.*
script: static.py