-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.yaml
More file actions
executable file
·105 lines (81 loc) · 1.77 KB
/
app.yaml
File metadata and controls
executable file
·105 lines (81 loc) · 1.77 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
application: pythonmeme
version: 5
runtime: python
api_version: 1
#threadsafe: no
#
#libraries:
#- name: django
# version: "1.2"
#
#builtins:
#- django_wsgi: on
handlers:
- url: /feed
script: hello.py
- url: /favicon.ico
static_files: favicon.ico
upload: favicon.ico
- url: /apple-touch-icon.png
static_files: touch-icon-iphone.png
upload: touch-icon-iphone.png
- url: /apple-touch-icon-precomposed.png
static_files: touch-icon-iphone.png
upload: touch-icon-iphone.png
- url: /touch-icon-iphone.png
static_files: touch-icon-iphone.png
upload: touch-icon-iphone.png
- url: /touch-icon-iphone4.png
static_files: touch-icon-iphone4.png
upload: touch-icon-iphone4.png
- url: /touch-icon-ipad.png
static_files: touch-icon-ipad.png
upload: touch-icon-ipad.png
- url: /robots.txt
static_files: robots.txt
upload: robots.txt
- url: /submit
static_files: Submit.html
upload: Submit.html
login: required
- url: /about
static_files: about.html
upload: about.html
- url: /bookmarklet
static_files: Bookmarklet.html
upload: Bookmarklet.html
- url: /static
static_dir: static
- url: /agg
script: /agg/reader.py
login: admin
- url: /twitter
script: /twitter/aggr.py
login: admin
- url: /gplus
script: /gplus/aggr.py
login: admin
- url: /hacknews
script: /hacknews/aggr.py
login: admin
- url: /feedbundle
script: /feedbundle/aggr.py
login: admin
- url: /del
script: /hello.py
login: admin
- url: /login
static_files: Submit.html
upload: Submit.html
login: required
- url: /init
script: init.py
login: admin
- url: /admin/{0,1}
script: $PYTHON_LIB/google/appengine/ext/admin
login: admin
- url: /admin/.*
script: $PYTHON_LIB/google/appengine/ext/admin
login: admin
- url: /.*
script: hello.py