Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best Fabric scripts for Django [closed]

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.

like image 291
Lee Avatar asked Jun 16 '11 16:06

Lee


1 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:

  • Fabric, Django, Git, Apache, mod_wsgi, virtualenv and pip deployment
  • Deploying Django with Fabric
like image 146
Evan Porter Avatar answered Sep 29 '22 06:09

Evan Porter