Re: any recipes for 'live' updating a site with model changes

2011-07-27 Thread Gelonida N
On 07/27/2011 11:26 AM, bruno desthuilliers wrote: > > > On Jul 27, 10:04 am, Uros Trebec wrote: >> Hi, >> >> for your DB migration problem you should take a look at South[0]. > > +1 > > I've just started using it and wonder why I spent so much time doing > things the painfull and error-prone

Re: any recipes for 'live' updating a site with model changes

2011-07-27 Thread Gelonida N
Thanks a lot everybody. Will look into south.. On 07/27/2011 10:04 AM, Uros Trebec wrote: > Hi, > > for your DB migration problem you should take a look at South[0]. > As for your 'under maintenance' step you will have to do that manually > or use some kind of a tool to automate it, as well as

Re: any recipes for 'live' updating a site with model changes

2011-07-27 Thread bruno desthuilliers
On Jul 27, 10:04 am, Uros Trebec wrote: > Hi, > > for your DB migration problem you should take a look at South[0]. +1 I've just started using it and wonder why I spent so much time doing things the painfull and error-prone manual way... > As for your 'under maintenance' step you will have to

Re: any recipes for 'live' updating a site with model changes

2011-07-27 Thread Uros Trebec
Hi, for your DB migration problem you should take a look at South[0]. As for your 'under maintenance' step you will have to do that manually or use some kind of a tool to automate it, as well as other steps for the upgrade. There are many such tools, Fabric[1] and Chef[2] being two of the most pop

Aw: Re: any recipes for 'live' updating a site with model changes

2011-07-26 Thread Juergen Schackmann
I will publish a new app to maintain models dynamically at runtime on the weekend -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/eWnQvLa89CYJ. To post to

Re: any recipes for 'live' updating a site with model changes

2011-07-26 Thread Shawn Milochik
Just use South. That's exactly what it was made for. http://south.aeracode.org/ -- 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 d

any recipes for 'live' updating a site with model changes

2011-07-26 Thread Gelonida N
Hi, Let's imagine I have a web server running with a Django application. Now I want to install an update (with a modified model) Is there any recommended way to upgrade such a server? Are there any tools helping with such upgrades or with creating upgrade scripts? If I had to do it 'manually' t