I created c:/helloworld and created files helloworld.py and app.yaml using Sublime (copy paste). I launched in GAE Launcher, and instead of running helloworld, GAE is creating a new helloworld folder inside helloworld directory. In that folder it created app.yaml, favicon.ico, index.yaml, main.py and main.pyc.
It runs the main.py file, and if I change the text in main.py it updates in the browser. Changes to helloworld.py that I created don't show up.
2015-05-21 10:17:02 Running command: "['C:\\Python27\\pythonw.exe', 'C:\\Program Files (x86)\\Google\\google_appengine\\dev_appserver.py', '--skip_sdk_update_check=yes', '--port=8080', '--admin_port=8000', 'C:\\helloworld\\helloworld']"
INFO 2015-05-21 10:17:05,115 devappserver2.py:745] Skipping SDK update check.
INFO 2015-05-21 10:17:05,288 dispatcher.py:192] Starting module "default" running at:
http://localhost:8080INFO 2015-05-21 10:17:32,005 module.py:788] default: "GET / HTTP/1.1" 200 5
I can't figure this out. I think its supposed to run the helloworld.py that I created, and not create a new folder and file. Did I somehow click some setting or not configure something?