sushant
sushant

Reputation: 1111

Best deployment strategy for Python google app engine

I wonder if there are any best practices/patterns for deploying python apps on Google app engine specifically Django. The best practice should be combination of existing best practices viz. Fabric, Paver, Buildout etc. Also please share best practice patterns for developing (I could not get virtualenv running with Django and Django App engine helper)

Upvotes: 2

Views: 1233

Answers (1)

Nick Johnson
Nick Johnson

Reputation: 101139

For many projects, you shouldn't need any deployment process at all. If you're using App Engine Patch or Django-Nonrel, they should take care of everything for you.

For other needs, check out this article on buildout and this set of buildout recipes.

Upvotes: 2

Related Questions