public
Description: Slightly higher than low-level interface to GAE.
Clone URL: git://github.com/dustin/gae-base.git
Search Repo:
gae-base / app.yaml
100644 14 lines (13 sloc) 0.298 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
application: yourappnamehere
version: 1
runtime: python
api_version: 1
 
handlers:
# - url: /
# static_files: public/index.html
# upload: public/index.html
- url: /(.*\.(js|css|png|gif|jpg|ico))
  static_files: public/\1
  upload: public/(.*\.(js|css|png|gif|jpg))
- url: .*
  script: main.py