Hacker News new | ask | show | jobs
by arkitaip 5479 days ago
I've been reading up on GAE+Django and it doesn't seem to support RDMBs or installation of libraries. Has this hindered you in your coding?
1 comments

This hasn't been a problem for me. Their datastore is very fast if you take the time read about it. The documentation is great: http://code.google.com/appengine

The project you are working on should determine the technology stack, for most things I prefer GAE instead of EC2 (I have projects on both). Feel free to use my template/example from github.

https://github.com/mcotton/GAE-template https://github.com/mcotton/GAE-blog

Lots of thanks for the feedback and templates!