public
Description: RESTful Blog for Google App Engine
Homepage:
Clone URL: git://github.com/DocSavage/bloog.git
commit  346e5fb7c1fd87259dc79f2c4ae852badb6f2b79
tree    d8c4174abc952406942c999aaec6847fbce57bdf
parent  5d683ffe6987d644f4685d2354df29a37c836367
bloog / app.yaml
100644 45 lines (38 sloc) 0.645 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
application: bloog
version: 1
runtime: python
api_version: 1
 
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.py
 
skip_files: |
 ^(.*/)?(
 (app\.yaml)|
 (app\.yml)|
 (index\.yaml)|
 (index\.yml)|
 (#.*#)|
 (.*~)|
 (.*\.py[co])|
 (.*/RCS/.*)|
 (\..*)|
 (dev/.*)|
 (tests/.*)|
 (docs/.*)|
 (.*\.markdown)|
 (license\.txt)|
 (setup.py)
 )$