You've asked a lot! I'll start with this question: > And final, are you developing on your local machine with the > development server or immedeatly at the server via ssh?
Loads of different ways, but I do this: * Production server - dedicated Debian host * Staging server - hosted Debian VM * Development boxes - each developer has one or more VMWare Debian instances > If yes, how do you deploy your project and about what points do you > have to concern while doing that? As a rule of thumb you only commit code changes from dev boxes to branches, or a tagged release if necessary. Staging should only svn up, and production has it's own release script. When tested these can be merged to trunk. Trunk can be released to staging for UAT. If UAT OK then press the button for the release script to send it to production. This release to live can get complicated to mitigate all issues. You need a way to get the latest codebase live whilst minimising downtime. You could svn co to a new dir on the same filesystem, then `mv $CUR $OLD && mv $NEW $CUR` should be atomic, but the svn co could take time on large systems and eat bandwidth. If you are using SVN you may be interested in file permissions. More thank likely you have schema changes in which case you may accept that downtime is given then you will need some sort of maintenance mode. Of course, extra browny points for a wrapper around svn/git/whatever so that on attempting a commit unit tests are run and a bunch of other sanity checks. If OK then the commit works. Spend a fiver on Agile Python Development. http://www.amazon.co.uk/gp/offer-listing/1590599810/ref=dp_olp_used?ie=UTF8&qid=1253043898&sr=8-1&condition=used -- Andrew McGregor 07940 22 33 11 --~--~---------~--~----~------------~-------~--~----~ 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 options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---