Re: How do you organize your deployment enviroment

2012-01-05 Thread Alexis Bellido
I think Fabric is the easiest solution, the tutorial is pretty good [http:/fabfile.org], Katie wrote about how she uses Fabric [http://therealkatie.net/blog/2011/nov/28/katie-finally-talks-about-her-fabfiles/], and I tried to extend the idea a little to setup a server from scratch just with a

Re: How do you organize your deployment enviroment

2011-05-25 Thread DrBloodmoney
Yeah. That was the post I was thinking about. For some reason I thought that it came from the core dev team. I still think that migrations should be a part of a full-stack framework like django (south is the first app I install in a new project). They might as well pick the best-in-breed and throw

Re: How do you organize your deployment enviroment

2011-05-25 Thread Shawn Milochik
On 05/25/2011 01:22 PM, DrBloodmoney wrote: On Wed, May 25, 2011 at 9:31 AM, DK wrote: 100% south migration :) This. I know that they have said that they weren't going to be putting South into django (contrib?), but I wish they would. Most django devs should be using it.

Re: How do you organize your deployment enviroment

2011-05-25 Thread DrBloodmoney
On Wed, May 25, 2011 at 9:31 AM, DK wrote: > 100% south migration :) This. I know that they have said that they weren't going to be putting South into django (contrib?), but I wish they would. Most django devs should be using it. -- You received this message because you are

Re: How do you organize your deployment enviroment

2011-05-25 Thread DK
100% south migration :) -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more

Re: How do you organize your deployment enviroment

2011-05-25 Thread Daniel Roseman
On Wednesday, May 25, 2011 1:22:40 PM UTC+1, jonas wrote: > > I'm just wondering how you could handle database changes. > > Let's say you have a existing working project and the client asks for some > changes. > > These changes force you to create an extra table and modify some tables >

Re: How do you organize your deployment enviroment

2011-05-25 Thread Jonas Geiregat
I'm just wondering how you could handle database changes. Let's say you have a existing working project and the client asks for some changes. These changes force you to create an extra table and modify some tables (models). On the development server I could modify the changes to the database

Re: How do you organize your deployment enviroment

2011-05-23 Thread Brian Bouterse
I use fabric and chef together. Usually fabric bootstraps my chef environment, and then chef takes over. I also don't use cron anymore, but instead use celery . Best, Brian On Mon, May 23, 2011 at 7:50 AM, DK wrote: > What is your optimal

Re: How do you organize your deployment enviroment

2011-05-23 Thread DK
What is your optimal filesystem folder scheme? I've used to keep everything in one directory (project-enviroment, that was itself a virtualenv directory) and then put everything there, but now I am finding hard to manage this as it became a little mess. Now I think about something like: /

RE: [] Re: How do you organize your deployment enviroment

2011-05-23 Thread Henrik Genssen
com> >to: django-users@googlegroups.com >subject: [] Re: How do you organize your >deployment enviroment > >On Mon, May 23, 2011 at 9:00 AM, DK <cypre...@gmail.com> wrote: > >> Hi, >> >> I am having a django project that is being frequently deployed on

Re: How do you organize your deployment enviroment

2011-05-23 Thread Mateusz Marzantowicz
On Mon, May 23, 2011 at 9:00 AM, DK wrote: > Hi, > > I am having a django project that is being frequently deployed on clean > linux installation. After a few deployments I have noticed that this process > is very time consuming for me (every time I am preparing run scripts

Re: How do you organize your deployment enviroment

2011-05-23 Thread Jonas Geiregat
I'm using Fabric for my deployment it's python based although it still leans on some shell scripting. Op 23-mei-2011, om 09:00 heeft DK het volgende geschreven: > Hi, > > I am having a django project that is being frequently deployed on clean > linux installation. After a few deployments I

Re: How do you organize your deployment enviroment

2011-05-23 Thread Sam Walters
Hi I make a shell script as i performs the steps for the first time. Basically it means learning bash or something similar. Disadvantage is its pretty inflexible however if its exactly the same linux distro every time then its not too bad. cheers sam_w On Mon, May 23, 2011 at 5:24 PM, Malcolm

Re: How do you organize your deployment enviroment

2011-05-23 Thread Malcolm Box
I'd heartily recommend chef - chef.opscode.com. Large library of scripts for almost any package or tool you're likely to want, scales out to lots of nodes but can be run in a simple solo mode for small deployments. Only downside is it's ruby but mostly you use the configuration language so

How do you organize your deployment enviroment

2011-05-23 Thread DK
Hi, I am having a django project that is being frequently deployed on clean linux installation. After a few deployments I have noticed that this process is very time consuming for me (every time I am preparing run scripts for everything, configuring cronjobs, paths to log files, etc) but this