Running Vista. Installed Python 2.5 (and had to manually set the PATH to c:\python25) Installed GoogleAppEngine (into Program Files\Google)
In a directory called helloworld, I created files app.yml .. application: helloworld version: 1 runtime: python api_version: 1 handlers: - url: /.* script: helloworld.py and helloworld.py ... print 'Content-Type: text/plain' print '' print 'Hello, world!' I run "dev_appserver.py helloworld" from the command line in the directory above helloworld and I get ... Invalid arguments Runs a development application server for an application. dev_appserver.py [options] <application root> Application root must be the path to the application to run in this server. Must contain a valid app.yaml or app.yml file. Why won't it run? How can I get better diagnostics? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
