Infrastructure for a software project - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T07:40:43Zhttp://stackoverflow.com/feeds/question/91122http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/91122/infrastructure-for-a-software-project4Infrastructure for a software projectliangzan2008-09-18T09:14:42Z2008-10-06T22:51:23Z
<p>Hi,</p>
<p>I'd be leading a new project soon. And I've been pondering over what are the basic infrastructure for a software project. These are the stuff that I think every project should have:</p>
<p>-Coding style conventions</p>
<p>-Naming conventions</p>
<p>-Standard project directory structure(eg maven standard dir layout, etc)</p>
<p>-Project management and issue tracking(eg trac, redmine, etc)</p>
<p>-Continuous Integration server(eg, hudson, cruise control, etc)</p>
<p>I'm not sure if I missed out anything. Would anyone like to add?</p>
http://stackoverflow.com/questions/91122/infrastructure-for-a-software-project/91139#911391Answer by m_pGladiator for Infrastructure for a software projectm_pGladiator2008-09-18T09:17:51Z2008-09-18T09:17:51Z<p>In addition to yours I will put:</p>
<ul>
<li>Unit Test Strategy</li>
<li>Integration Test Strategy</li>
<li>Defined Process</li>
<li>Release (delivery) strategy (like milestones, working packages and so on)</li>
<li>Source control branching strategy</li>
</ul>
http://stackoverflow.com/questions/91122/infrastructure-for-a-software-project/91154#911543Answer by Vertigo for Infrastructure for a software projectVertigo2008-09-18T09:20:36Z2008-09-18T09:20:36Z<ul>
<li>revision control system (eg. subversion, cvs, git)</li>
</ul>
http://stackoverflow.com/questions/91122/infrastructure-for-a-software-project/91155#911554Answer by JXG for Infrastructure for a software projectJXG2008-09-18T09:20:49Z2008-09-18T09:20:49Z<p>As a preliminary answer, check out the Joel test:
<a href="http://www.joelonsoftware.com/articles/fog0000000043.html" rel="nofollow">http://www.joelonsoftware.com/articles/fog0000000043.html</a></p>
<p>Just an appetizer:</p>
<blockquote>
<ol>
<li>Do you use source control?</li>
<li>Can you make a build in one step?</li>
<li>Do you make daily builds?</li>
<li>Do you have a bug database?</li>
<li>Do you fix bugs before writing new code?</li>
<li>Do you have an up-to-date schedule?</li>
<li>Do you have a spec?</li>
<li>Do programmers have quiet working conditions?</li>
<li>Do you use the best tools money can buy?</li>
<li>Do you have testers?</li>
<li>Do new candidates write code during their interview?</li>
<li>Do you do hallway usability testing? </li>
</ol>
</blockquote>
http://stackoverflow.com/questions/91122/infrastructure-for-a-software-project/91161#911611Answer by Jakub Kotrla for Infrastructure for a software projectJakub Kotrla2008-09-18T09:21:28Z2008-09-18T09:21:28Z<ul>
<li>What about documentation - how (comments in code, high-level specs), when, amount, who</li>
<li>How you will test - unit/acceptance/user testing</li>
<li>code versioning, some SVN/Git (or is it included in trac?)</li>
<li>team roles and responsibilities - need to be done in ocntext of your project</li>
</ul>
http://stackoverflow.com/questions/91122/infrastructure-for-a-software-project/91165#911650Answer by Ilya Kochetov for Infrastructure for a software projectIlya Kochetov2008-09-18T09:21:50Z2008-09-18T09:21:50Z<p>Knowledge management is crucial. As you already plan to use wiki (like Trac or <a href="http://www.redmine.org/" rel="nofollow">Redmine</a>) you could use it for KM as well.</p>
http://stackoverflow.com/questions/91122/infrastructure-for-a-software-project/91185#911850Answer by Ilya Kochetov for Infrastructure for a software projectIlya Kochetov2008-09-18T09:25:38Z2008-09-18T09:25:38Z<p>Functional testing is a mandatory part of any project. Unit testing is great and it works well for Agile projects but the functional testing is still necessary. You need at least a basic Test Plan. If you plan to have multiple projects or sub-projects a Test Strategy document or Wiki page would be good.
Test Cases, Acceptance Test Cases etc could be driven by your User Stories or their equivalents but they still have to exist in some form.</p>
http://stackoverflow.com/questions/91122/infrastructure-for-a-software-project/93537#935370Answer by liangzan for Infrastructure for a software projectliangzan2008-09-18T15:23:02Z2008-09-18T15:23:02Z<p>I would throw a file sharing server into the mix too. I thought version control was so basic, that I didn't even bother to put it there in the list. But its a good point version control.</p>
http://stackoverflow.com/questions/91122/infrastructure-for-a-software-project/176503#1765030Answer by Ben for Infrastructure for a software projectBen2008-10-06T22:43:48Z2008-10-06T22:43:48Z<p>Configuration Management Plan. You need to have a documented approach to your development workstreams, how you will be merging between then, etc. </p>