Setting up a web development/build environment

Posted by Eric on Stack Overflow See other posts from Stack Overflow or by Eric
Published on 2010-04-23T13:06:28Z Indexed on 2010/04/23 13:13 UTC
Read the original article Hit count: 202

Hello all,

My current project has a development web server and live web server. Developers make changes to files on the dev server and test them (by going to the dev address) and make changes as necessary. When the file or files are ready to go, they are copied to the live server. There is no version control.

As you might expect, there are some problems with this model:

  • It's hard to keep track of what other programmers have done.
  • It's hard to keep track of what files should be copied to the live server.
  • There is no version control.

I'm in a position to make nearly any change I like, but I want it to be the right one! I have been turning this over in my head for quite a while, and I have a solution that might be okay. But I want SO's opinion.

Certainly version control needs to be added. But how should it work with the existing codebase and where should the developers be testing? How can anyone know what needs to be moved to the live server? What other details need to be addressed?

How would you attack this problem?

Supplementary information:

  • The website is vital, but not mission critical. A small amount of downtime is acceptable.
  • There are very few developers. (Right now, only 4.)
  • History: Before I started, the project used Visual Source Safe. This was a sufficiently bad experience that they quit using it and abandoned version control.
  • The project is an ASP.NET (C#) website.
  • This seems like a question that may have a complicated answer. Thanks for thinking about it!

© Stack Overflow or respective owner

Related posts about version-control

Related posts about build-process