Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the best stock Fabric scripts for deploying a typical Django project? Fabric looks very good, but seems to require you to start from scratch and write your own deployment script. Coming from Capistrano, I'd like to start with something that works more out-of-the-box that others have tested rather than writing one from scratch.

Ideally I'd like one that syncs the database, performs migrations using South, backs up the site and database, and can roll back previous deploys.

share|improve this question

3 Answers

Since everyone's environment is different, most Fabric scripts are going to be different from each other. So a "stock" Fabric script for anything will likely never exist.

Fabric allows you to easily create your own. A couple links I found useful are:

share|improve this answer

You might have a look at Woven.

share|improve this answer
Unfortunately, it's no longer maintained. – alecxe Apr 29 at 5:50

Check this tutorial

I have found on this a good howto for work on django projects

http://www.jeffknupp.com/blog/2012/02/09/starting-a-django-project-the-right-way/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.