Infrastructure for a software project - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T07:40:43Z http://stackoverflow.com/feeds/question/91122 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/91122/infrastructure-for-a-software-project 4 Infrastructure for a software project liangzan 2008-09-18T09:14:42Z 2008-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#91139 1 Answer by m_pGladiator for Infrastructure for a software project m_pGladiator 2008-09-18T09:17:51Z 2008-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#91154 3 Answer by Vertigo for Infrastructure for a software project Vertigo 2008-09-18T09:20:36Z 2008-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#91155 4 Answer by JXG for Infrastructure for a software project JXG 2008-09-18T09:20:49Z 2008-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#91161 1 Answer by Jakub Kotrla for Infrastructure for a software project Jakub Kotrla 2008-09-18T09:21:28Z 2008-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#91165 0 Answer by Ilya Kochetov for Infrastructure for a software project Ilya Kochetov 2008-09-18T09:21:50Z 2008-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#91185 0 Answer by Ilya Kochetov for Infrastructure for a software project Ilya Kochetov 2008-09-18T09:25:38Z 2008-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#93537 0 Answer by liangzan for Infrastructure for a software project liangzan 2008-09-18T15:23:02Z 2008-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#176503 0 Answer by Ben for Infrastructure for a software project Ben 2008-10-06T22:43:48Z 2008-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>