Created
April 21, 2011 00:54
-
-
Save cheeaun/933429 to your computer and use it in GitHub Desktop.
Simple static site hosting for Google App Engine WITHOUT any Python code at all. Just include this file, BOOM.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
application: YOURAPPNAME | |
version: 1 | |
runtime: python | |
api_version: 1 | |
handlers: | |
- url: / | |
static_files: index.html | |
upload: index.html | |
- url: /(.*) | |
static_files: \1 | |
upload: /(.*) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment