how about an installer to setup complicated developer environment?

Go To StackoverFlow.com

0

Our developer environment setup tends to have a lot of moving parts with a lot of steps. Every day when we need to do an svn update, there are a number of things we need to do and sometimes when it fails to work, we need to rollback everything, including the svn updates, so we can go on working locally.

What would be a good way to provide a developer environment updater ? I am looking at some installer software etc., but want something easy to customize. I develop on windows am not familiar with C# etc., I maybe able to use powershell or perl or some such.

Are there are already plugin type libraries for this ? Not sure what to look for.

2012-04-04 05:04
by treefrog


0

Normal installer is probably what you want. Something simple like nullsoft installer.

Uninstalls/reverts are a lot of pain to do correctly. If possible virtualize dev boxes and make a snapshot before deploying an update.

2012-04-04 05:21
by Eugene
would I be able to call svn update from it and also run ant build - treefrog 2012-04-04 07:11
looks like NSIS will fit the bill. many thank - treefrog 2012-04-04 07:38
Ads