What constitutes a development environment, and how do you document it? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T11:42:43Zhttp://stackoverflow.com/feeds/question/368885http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it12What constitutes a development environment, and how do you document it?Joel Coehoorn2008-12-15T16:20:56Z2009-01-02T18:59:03Z
<p>What items go into a software shop's development environment, how do you document it, and what processes do you follow to make changes?</p>
<p>I thinking about this from the standpoint where I want to make it easier to bring new hires up to speed quickly by having all this on a checklist we follow when setting them up, and then while I'm at it making it easier for the new hires or existing team members to bring new powerful toolkits and ideas into the environment without disrupting things.</p>
<p>I want to keep this platform agnostic, so even though I'm currently at a microsoft shop where Visual Studio would be assumed I'll go ahead and list compiler/IDE as one of the items:</p>
<p>Here are some ideas for part 1:</p>
<p><em>[edit]: I'm keeping this updated based on the better suggestions.</em></p>
<ul>
<li>Source Control access</li>
<li>Issue/Bug/Project tracker</li>
<li>System Documention, or references to find the system documentation in source control or <strong>in a wiki</strong>, including:
<ul>
<li>build document/environment covered by this question</li>
<li>design documents / technical notes</li>
<li>Coding Style guidelines</li>
<li>Deploy for review/testing/QA/staging/production procedures</li>
<li>Licensing details for your tools and your product</li>
<li>Team Calendar, including the project schedule(s), deadlines, vacation time, and support/on-call schedule (if required)</li>
</ul></li>
<li>compiler/IDE</li>
<li>compiler/IDE extensions (things like source control plugins or visual studio add-ins)</li>
<li>3rd party SDKs/toolkits</li>
<li>Database connection and tools</li>
<li>Testing Frameworks</li>
<li>Internal libraries</li>
<li>communication tools (chat, wiki, etc)</li>
<li>Static analysis tools (FxCop, FlawFinder, etc)</li>
<li>Virtual machines (holding dev environment or for testing)</li>
<li>Specialized editors (modeling, xml, etc)</li>
<li>Other tools</li>
</ul>
<p>What else goes in this list, and how do you document it and vet changes?</p>
http://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it/368908#3689081Answer by Daok for What constitutes a development environment, and how do you document it?Daok2008-12-15T16:27:27Z2008-12-15T16:27:27Z<p>For versionning: all is in the Source Control. And, after the table of content, a table with all version with a brief description of the change. This way, manager can see the evolution without needing to connect in the source control to know what has changed.</p>
<p>I have a master document (project plan) that refer to the requirement document, test document, etc.</p>
<p>For changes, I have a Request of change system. This way, all change need to be approved by the client and is clearly identified who request it, who did the evaluation (dev side) and who approved on the client side. This way, if the schedule change, we have proof that the client changed thing in the path of developpement.</p>
http://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it/368909#3689091Answer by Darryl Braaten for What constitutes a development environment, and how do you document it?Darryl Braaten2008-12-15T16:27:58Z2008-12-15T16:27:58Z<p>Something I have found useful in the past is a build document, this would include a checklist at the beginning and full instructions for each item, how to install it what options to use etc. </p>
http://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it/368915#3689154Answer by Rob Wells for What constitutes a development environment, and how do you document it?Rob Wells2008-12-15T16:29:30Z2008-12-15T16:29:30Z<p>That's a good list to start with.</p>
<p>You might like to add test frameworks, e.g. CUnit, CPPUnit to your shopping list there.</p>
<p>And also peer review procedures, e.g. a peer review template and library of previously seen "gotchas".</p>
<p>Ah, and maybe add a static analysis tool, e.g. FlawFinder. But remember, you still need a careful inspection of the code, "A fool with a tool is still a fool!"</p>
<p>BTW The book Practical Development Environments (<a href="http://rads.stackoverflow.com/amzn/click/0596007965" rel="nofollow">Amazon link</a>) is an excellent resource for this.</p>
<p>HTH.</p>
<p>cheers,</p>
<p>Rob</p>
http://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it/368922#3689221Answer by Stephen Wrighton for What constitutes a development environment, and how do you document it?Stephen Wrighton2008-12-15T16:31:12Z2008-12-15T16:31:12Z<p>Kill the generic "Other tools" section and list them out. As for me (and I'm a .NET developer) my other tools include:</p>
<ul>
<li>IE & Firefox (as well as any other browser I need to support)</li>
<li>The developer extensions for IE & Firefox </li>
<li>WATIR & Ruby (for testing web applications) </li>
<li>SQL Server Management Studio (or whatever DB tool) </li>
<li>Word Processor (ex: Word) </li>
<li>Project Management tool (ex: MS Project) </li>
<li>Diagramming tool (ex: Visio)</li>
</ul>
<p>As for documenting it, use a word document or an excel spreadsheet in a Source Control repository labeled as Development Environment and make sure you list the ORDER that these applications should be installed on the box (for example, you need to install VS2008 prior to Office 2007).</p>
http://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it/368936#3689360Answer by Robert S. for What constitutes a development environment, and how do you document it?Robert S.2008-12-15T16:33:37Z2008-12-15T16:33:37Z<p>If you use modeling tools, those need to be documented as well, especially if you're a model-driven architecture shop. ;)</p>
http://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it/368962#3689627Answer by Michael Haren for What constitutes a development environment, and how do you document it?Michael Haren2008-12-15T16:40:50Z2008-12-15T16:40:50Z<p>Wiki. </p>
<p>Saving common procedures in a wiki has helped me immensely, and I've only been doing it for two weeks. This helps new people help themselves. And, if they find a deviation or something confusing, they can update the wiki themselves.</p>
<p>We have pages for how to build x, how to test x, how to package x, how to test x, etc. This is a great place for things like configuration tips, registry keys, gotchas, etc.</p>
<p>We are currently using Redmine for task management, bug tracking, wiki, etc. It's been very nice to us (and it's free).</p>
http://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it/368995#3689951Answer by Joachim Sauer for What constitutes a development environment, and how do you document it?Joachim Sauer2008-12-15T16:50:26Z2008-12-15T16:50:26Z<p>I'd include a section on how to challenge/change any or all of those items. I'd also include a lot more documentation on the processes and guidelines, as they are at least as important as the software environment.</p>
<p>For example:</p>
<ul>
<li>How to get a different external library to be accepted as a valid external dependency</li>
<li>How to get a new version of an existing library accepted as a valid external dependency</li>
<li>How are IDE-Upgrades handled. Do you always use the latest version? If not, what's the process of upgrading to the latest version?</li>
<li>What's the process of fixing a bug (what of tiny one-line-fixes? Do they need a bug report?)</li>
<li>Commit comment guidelines</li>
<li>How are version numbers of software components defined. Who decides when to go to the next version?</li>
<li>Are alternate versions of the standard tools allowed, if the developer wishes? If so, what are the minimum requirements for these tools (common file format support, for example).</li>
<li>What QA tools do you use? What do you use for load testing? Stress testing?</li>
</ul>
http://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it/369029#3690291Answer by Stephane Grenier for What constitutes a development environment, and how do you document it?Stephane Grenier2008-12-15T17:02:48Z2008-12-15T17:02:48Z<p>Why don't you create an installer for developers? It's pretty easy and the benefits are incredible. </p>
<p>If you're interested in more details, I wrote an article about just this on my blog entitled: <a href="http://www.followsteph.com/2008/07/29/how-to-quickly-setup-a-software-development-environment/" rel="nofollow">How To Quickly Setup a Software Development Environment</a></p>
http://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it/369225#3692251Answer by parsenome for What constitutes a development environment, and how do you document it?parsenome2008-12-15T18:10:39Z2008-12-15T18:10:39Z<p>I find that a development system image is invaluable. That way, everyone is testing on the same setup, rather than each person setting up their own environment that doesn't quite match everyone else's. Naturally, that works best if you're in a VM environment.</p>
http://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it/369290#3692901Answer by RS Conley for What constitutes a development environment, and how do you document it?RS Conley2008-12-15T18:34:01Z2008-12-15T18:34:01Z<p>License keys and the like are as important as the installation of the tools themselves. The best way to deal with it is first imagine what if it was ten years from now. The tools are generally straight forward to document but sometimes the licensing isn't. Make sure that is included in your documentation.</p>
<p>Also make sure you include setup information on the computer itself. Like additional hardward, settings on the hardware, drivers, etc. I know you have a test environment in a Virtual Machine but you need the external environment where you code and build to be correct as well. Especially if you want to do dynamic debugging.</p>
http://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it/369397#3693971Answer by Parappa for What constitutes a development environment, and how do you document it?Parappa2008-12-15T19:14:09Z2008-12-15T19:14:09Z<p>I've worked on several teams that used a wiki (such as <a href="http://www.mediawiki.org/wiki/MediaWiki" rel="nofollow">MediaWiki</a>, <a href="http://www.atlassian.com/software/confluence/" rel="nofollow">Confluence</a>, or <a href="http://info.tikiwiki.org/tiki-index.php" rel="nofollow">TikiWiki</a>--to name just a few) for documenting their development environment. A wiki works well because development pipelines tend to change over time, and it takes something of a living document (something with built-in revision control that everyone on the team has read and write access to) to properly capture much of it, depending on the size of your team/project.</p>
<p>Your documentation should include write-ups of the various processes vital to the project's development, including the following:</p>
<ul>
<li>A step-by-step guide for creating a working build of your project</li>
<li>How to run the unit tests / smoke tests / test harness, as well as add to them</li>
<li>How to search bug reports, submit a bug report, and close off fixed bugs</li>
<li>Getting project changes committed (process for sign-off on work, getting work into repository)</li>
<li>How to create, test, package up, and push out a release version of the project</li>
</ul>
<p>The wiki can be a good place for project team members to document ideas and suggestions for improving these processes.</p>
<p>I've also found that, as a project member, I can use the wiki to help gauge the health of a team. If the wiki is neglected, it's probable that team communication and morale are hurting too. Any team where vital processes like the ones in the list above are hoarded by managers and distributed on a "need-to-know" basis is not one that I would want to work for.</p>
http://stackoverflow.com/questions/368885/what-constitutes-a-development-environment-and-how-do-you-document-it/395809#3958090Answer by JB King for What constitutes a development environment, and how do you document it?JB King2008-12-28T04:12:37Z2008-12-28T04:12:37Z<p>Another thought would be to have a weekly, "Patterns & Practices," meeting where someone introduces something new to the team. It could be something as simple as a couple of tricks within the IDE or it could be giving an overview of some new framework that a couple of developers think is worth the others knowing or it could be where some cross-training happens so that it isn't one guy that knows all about how XYZ is done here.</p>
<p>Would it make sense to try to have an initial month mapped out for new hires? For example, could there be time devoted to getting them to hit the ground running with some new feature or bug fixing in the current project in the first week with a couple of other milestones mapped out so that new guys contribute something fairly early on.</p>