vote up -1 vote down star

This question (topic) about how and where developers install software (focused on servers) on developer machine.

What is your setup?


I preferred following setup.

  • IDE install on host system
  • Server software (IIS, MSSQL, Apache, etc install into virtual machine)

This setup have two reasons

  1. I can have same configuration like production server.
  2. If I don't developing I just turn off virtuals and they don't slowing my OS.
flag
What is your question? Could you please clarify? – divo May 25 at 9:25
divo: This topic about inspiration for others developers – MicTech May 25 at 9:34

2 Answers

vote up 0 vote down

Virtual machine is nice if you have enough power on your computer to support it.

We have an "integration server" (one PC per team) to install those kind of servers and also take the role of test for deployment.

On local, we have only the IDE and the VCS (Version Control System) client (or, in the case of Git, the all repository)

link|flag
vote up 0 vote down

There is the question of how complex is the setup, as here are a few different examples of what I've run across:

  1. Shared DB - Where I work now we each have a local web server but share a DB server for our environment. It isn't a bad setup in some ways as this allows for one person's changes to be picked up sooner rather than later. This is a bit of a complex setup and the DB server is shared for a few environments so that server is used quite a bit at times if there work on a couple of environments simulating load.

  2. Production/development environment - Where I worked before where I am now, we also had XP with IIS and some SQL tools to be able to query the DB. There was a back-end platform that was built by a different team than mine so that there are bounds on what is and isn't for me to change and check in.

  3. Client / Server setup - Where I work in my first job out of university, I had a pair of machines, one with NT 4.0 Server and another with Windows 95 as this allowed me to do various tests from a client machine that wasn't on the same box as the server. I do wish I had this back again at times.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.