What deployment framework to use?

Posted by jeruki on Programmers See other posts from Programmers or by jeruki
Published on 2012-11-05T17:08:12Z Indexed on 2012/11/05 17:16 UTC
Read the original article Hit count: 338

Filed under:
|
|
|

We are trying to figure out what deployment method/framework to use with a python application, it has a basic wsgi server to make some REST resources available and a set of static web pages with the interface that are served through apache.

The situation is as follows:

My team works in isolated parts of the program and sometimes together in specific modules, we have different testing servers and one master server, we all work locally, sync the code using git, and then run a bash script that copies the files from the windows machines to the indicated linux server(using ssh) and then restarts the app. After thinking about it this doesn't seem to be the right way to do it, the script overwrites all the files in the server with the local files everytime.

We want to be able to work in the same server without the worry of overwriting other people's code and we need to deploy to different servers to avoid restarting the service while others work with it and in the near future we need to deploy to the master or several clones of the master server when the application reaches a more mature state.

We found serveral options capistrano, kwate, chef or fortress, even fleet but we wanted to have opinions from people that has used them to be sure it is what we need.

So this are the main questions:

  1. Are these the kind of programs we should be looking at to achive a safe concurrent deployment process?

  2. Which one have you used/recommend and why? do you think it would help in our actual situation?

Thank you so much for your feedback and advice on this.

© Programmers or respective owner

Related posts about python

Related posts about Windows