I need to know the best way to manage team web-development on a shared server (hostgator).
I have done some individual web development on a shared server in the past, and I have always setup SVN through SSH to have a pretty-nice development workflow (version control, quick-commits, work though eclipse/subclipse, etc). However, I also know that with that setup, I had to make some pretty-sophisticated post-commit hooks to export the repository to /public_html; and, therefore, making the repository code testable.
This seems like a tedious and error-prone setup for an entire team. I would like to be able to:
With this in mind, does anyone know of a good version-control/repository setup for developing a website with a team of about 4-5 people?
Thanks a lot.
EDIT: I am pretty confident that I am stuck with SVN. Not a personal preference, but a limit of my web host. But, it's not as much of a repository problem (can manage with SVN), as much as a problem of deployment. What and How's the best way to deploy repository code to testing and production. I don't have the luxury of a build-server such as Hudson on my shared hosting server. Yes, I can write post-commit hooks, but it seems a little too error-prone and they are already very fancy. If this is the best I can get, then I will have to manage. Just curious if someone has run into another option.
lets get this straight
the best way to work on project with any number of coleagues is throught some svn client. i have a best experiences with tortoisesvn
first thing you should do after you start a new project is to set up project repository like this
your_project
trunk
branches
tags
where trunk represend your newest stable production code. dir branches is for developers who work on project. every developer should have his own branche and of course there should be also a dir for release like
branches
r01
developer1
developer2
developer3
so course of action should be like this:
and here comes tools like hudson whitch after he detect new test tag he automatically deploy new test. how, when and where depends of course on configuration
and finally when time is right (every tester do his/her job) admin merge latest release to trunk (our stable code), afterwhitch create new a tag eg tags/r01 from trunk and hudson do the rest of the work (auto deploy new version of our web)
i have however only scratche the surface here, there is a lot of brainstorming around this particular problem on both tortoise svn and hudson manuals. hope this helps
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With