DevCongress - Google App Engine Overview and Demo

Slide presentation, demo and video of my talk about getting started on Google App Engine.

Presentation

Code for demo

Reposting from https://gist.github.com/jeffgodwyll/6300282.

app.yaml

# The Configuration File

application: your_app_id
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /favicon\.ico
  static_files: favicon.ico
  upload: favicon\.ico

- url: .*
  script: main.app

libraries:
- name: webapp2
  version: "2.5.1"

main.py

# The main.py file is our controller where the core application logic goes

import webapp2

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

app = webapp2.WSGIApplication([('/', MainHandler)],
                              debug=True)

Video