Tools for managing code deployment/versioning for IIS / Windows enviroments

Posted by RizwanK on Stack Overflow See other posts from Stack Overflow or by RizwanK
Published on 2009-05-28T21:11:59Z Indexed on 2010/03/28 18:03 UTC
Read the original article Hit count: 169

Filed under:
|
|

I've got a strong background in Linux and OSX, and just left a job where I was architecting systems based on those platforms.

Now I've got a Windows Server running IIS that has a number of different websites that it hosts. Most of them are just a bunch of HTML, JS and Images, with some ASP for some customer tools. (Each website has a different set of customer tools, or they are the same tools, but with minor code changes between them.) I'm also adding a develop web server with the same code, but the 'bleeding edge' stuff.

I need an effective way of managing changes and updates to the overall codebase (henceforth referring to both the images and the html and the asp, for all the sites). When a dev (or webmaster) checks in changes, I want it to show up automatically on the developer server, but should be manually pushed out to the live server. I'd be tempted to just make the websites SVN repositories, but I'd be concerned about the overhead of having the webdeveloper having to log into the server and trigger an SVN update via commandline/tortise (and heaven forbid, manage tags).

Ideally I'd also manage IIS profile settings between the systems, but the major need is to be able to manage the process, and expose it to our ASP developer, and our webmaster, both of which are used to just FTPing up the files to the live site.

So, any recommendations on tools (beyond some SVN hacking with BAT files + teaching the webmaster how to log into the server and do updates) or workflows that would help this out? I even considered an RPM type package (or some Windows equivalent, of course) to manage the live server, but that seems like a bit too much overhead.

Thanks.

© Stack Overflow or respective owner

Related posts about iis

Related posts about deployment