[Django]-Automate deployments in ec2

4👍

✅

Fabric is a really great tool for running commands on distributed groups of servers (I use it for provisioning and setup as well as running maintenance and deployment tasks); if you want to manage configuration, you might want to take a look at Puppet or Chef.

5👍

You may also want to have a look at the open source tool Cloudify which automates the installation, configuration, monitoring and scaling of applications on EC2 (or any other cloud for that matter). You can use plain scripts or Chef cookbooks to install and configure your application.

Leave a comment