Cloud Computing

Setup

  1. Download the software (python libs).
  2. Create dir and write helloworld.py:
    print 'Content-Type: text/plain'
    print ''
    print 'Hello, world!'
    
  3. Write app.yaml:
    application: helloworld
    version: 1
    runtime: python
    api_version: 1
    
    handlers:
    - url: /.*
      script: helloworld.py
    
  4. Run the web-server: google_appengine/dev_appserver.py helloworld/
  5. Go to http://localhost:8080/

José M. Vidal .

8 of 19