Re: Django Continuous Integration

2009-02-05 Thread Ales Zoulek
> Revision Control: How do you layout your development repository? I'm > using Subversion for my setup but would be interested in hearing what > else others are using (Mercurial, Bazaar, Git, etc) GIT client against SVN repository. > > Packaging: Django has an aversion to using setuptools and

Re: Django Continuous Integration

2009-02-04 Thread Vitaly Babiy
Has any one got hudson to work as a CI system. Vitaly Babiy On Wed, Jan 14, 2009 at 1:05 PM, Adam V. wrote: > > > Revision Control: How do you layout your development repository? I'm > > using Subversion for my setup but would be interested in hearing what > > else others

Re: Django Continuous Integration

2009-01-14 Thread Adam V.
> Revision Control: How do you layout your development repository? I'm > using Subversion for my setup but would be interested in hearing what > else others are using (Mercurial, Bazaar, Git, etc) We're using Subversion. We have one big repository, but we treat it like two top-level repository,

Re: Django Continuous Integration

2009-01-13 Thread felix
On Tue, Jan 13, 2009 at 7:45 PM, mguthrie wrote: > > Revision Control: How do you layout your development repository? I'm > using Subversion for my setup but would be interested in hearing what > else others are using (Mercurial, Bazaar, Git, etc) I have django and

Re: Django Continuous Integration

2009-01-13 Thread Rachel Willmer
An interesting set of questions, and one I've been thinking about myself. So here's my tuppence-worth. Background: I've written a set of 3 websites, which I've developed incrementally, some shared code, some separate - done for my own benefit, no external customer, so I can change things as I

Django Continuous Integration

2009-01-13 Thread mguthrie
I've been working on understanding "agile" programming practices as well as setting up a proper development/testing/release environment. There are several good resources out there for getting these things configured for Python projects in general but nothing really specific to Django. What has