Google App Engine
Google app engine : Viewing the different versions of your app
your app is you_project_id.appspot.com
you can view different versions of your app by adding versionnumber and dash in front of that
example: (URLs aren’t mean to work)
my example project url is:
http://coolaproject-1231-1231.appspot.com
i can view both version 1 and version 2
to view version 1 it would be
http://1-dot-coolaproject-1231-1231.appspot.com
to view version 2 it would be
http://2-dot-coolaproject-1231-1231.appspot.com
etc.
Google App Engine : when connecting to http://localhost:8080 get HTTP Error 500 Internal server error
So I was running google app engine in order to get some code running.
while it should have ran out of the box it didn’t.
Checked firewall, which would have been my first suspect.
that wasn’t it.
http://localhost:8000 was working fine.
Looked around and found the solution below:
had the same problem. This seemed to fix it:
cd to google_appengine, run
python dev_appserver.py –port=8080 –host=127.0.0.1 /path/to/application
at this point there is a prompt to allow updates on running, I said Yes.
At this point the app was running as it should, also when I quit this and went in using the launcher again, that worked too.
Once I ran the command dev_appserver.py it was able to give me feedback on my code via error messages that I wasnt getting with GAE. And it’s always something simple….