Skip to content

Commit

Permalink
initial commit, nothing fancy, just boilerplate from skd
Browse files Browse the repository at this point in the history
  • Loading branch information
progrium committed Mar 27, 2010
0 parents commit e47dd70
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app.yaml
@@ -0,0 +1,8 @@
application: hackerdojo-log
version: 1
runtime: python
api_version: 1

handlers:
- url: .*
script: main.py
11 changes: 11 additions & 0 deletions index.yaml
@@ -0,0 +1,11 @@
indexes:

# AUTOGENERATED

# This index.yaml is automatically updated whenever the dev_appserver
# detects that a new type of query is run. If you want to manage the
# index.yaml file manually, remove the above marker line (the line
# saying "# AUTOGENERATED"). If you want to manage some indexes
# manually, move them above the marker line. The index.yaml file is
# automatically uploaded to the admin console when you next deploy
# your application using appcfg.py.
17 changes: 17 additions & 0 deletions main.py
@@ -0,0 +1,17 @@
from google.appengine.ext import webapp
from google.appengine.ext.webapp import util


class MainHandler(webapp.RequestHandler):
def get(self):
self.response.out.write('Hello world!')


def main():
application = webapp.WSGIApplication([
('/', MainHandler)], debug=True)
util.run_wsgi_app(application)


if __name__ == '__main__':
main()

0 comments on commit e47dd70

Please sign in to comment.