vote up 4 vote down star
4

I have a Python web application consisting of several Python packages. What is the best way of building and deploying this to the servers?

Currently I'm deploying the packages with Capistrano, installing the packages into a virtualenv with bash, and configuring the servers with puppet, but I would like to go for a more Python based solution.

I've been looking a bit into zc.buildout, but it's not clear for me what I can/should use it for.

flag

4 Answers

vote up 0 vote down

Would SCons do what you want?

http://www.scons.org/

link|flag
vote up 0 vote down

pyinstall looks like it should be a simpler solution for you. At least as far as packaging the python stuff and installing in virtualenv goes. I don't know of a pythonic way to do server configuration...

link|flag
vote up 0 vote down

Paver is a rake/make work alike for python. I don't know if this is what your looking for, still haven't found anything equivalent to puppet for python...

link|flag
vote up 1 vote down

I use Mercurial as my SCM system, and also for deployment too. It's just a matter of cloning the repository from another one, and then a pull/update or a fetch will get it up to date.

I use several instances of the repository - one on the development server, one (or more, depending upon circumstance) on my local machine, one on the production server, and one 'Master' repository that is available to the greater internet (although only by SSH).

The only thing it doesn't do is automatically update the database if it is changed, but with incoming hooks I could probably do this too.

link|flag

Your Answer

Get an OpenID
or

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