I installed Python2.6 and Google App Engine (GAE).
I realized that GAE does not run on 2.6, so I installed 2.5 as well.
Now I have a very basic code as follows and it does not show on the localhost:8080
I typed the following in cmd.exe under my dir testapps.
c:\Users\myname\testapps>"\Program Files\Google\google_appengine\dev_appserver.py" helloworld
I am hoping someone lead me to the right direction.
helloworld/helloworld.py
print 'Content-Type: text/plain'
print ''
print 'Hello, world!'
helloworld/app.yaml
application: helloworld
version: 1
runtime: python
api_version: 1
handlers:
- url: /.*
script: helloworld.py