Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

63
votes
7answers
13k views

What is the best project structure for a Python application?

Imagine that you want to develop a non-trivial end-user desktop (not web) application in Python. What is the best way to structure the project's folder hierarchy? Desirable features are ease of ...
35
votes
2answers
5k views

Ideal ruby project structure

I'm after an overview/clarification of the ideal project structure for a ruby (non-rails/merb/etc) project. I'm guessing it follows along the lines of: app/ bin/ #Files for ...
21
votes
5answers
1k views

How do you manage your Delphi Projects with third-party components in Version Control?

Installing third-party components always take a long time specially if you have large ones, but also it take more time if you setup the environment in more than one computer. And I'm thinking to add ...
8
votes
1answer
161 views

What's the normal structure of a Python open source project and what's the preferred way of running the tests?

I wrote some code that I would like to share, and I would like to follow the best practices in creating/maintaining it's structure. I will host the code on BitBucket, and now I'm thinking about how I ...
6
votes
3answers
1k views

What is the best practice for the location of Java application configuration files?

Is there a best practice for where configuration files should be stored in a Java project. The file type is a Java properties file in this case, but I do use other file types in other projects. Would ...
6
votes
5answers
985 views

In Delphi, should I add shared units to my projects, to a shared package, or neither?

This question is similar to this one, but not a duplicate because I'm asking about issues not discussed in that question. I have a client-server project in Delphi 7 with the following directory ...
5
votes
7answers
162 views

How to organise my web content?

What is the most common way to organise web content, i.e. HTML, JS and CSS? I'm usually doing this for small projects: index.html style.css script.js I think this is fairly standard. But how do ...
5
votes
1answer
286 views

Qt project structure - advice needed

I'm currently working on a project based on Qt4/QtCreator. I'd like to ask You for advice on how to organize my application. There are 3 seperate tools, each has it's own view. All views are ...
5
votes
2answers
953 views

Recommended WPF Project Structure?

I'm a stickler for good Visual Studio Solution and Project structures. I'm about to start a WPF proof of concept piece of work. Can anyone recommend some WPF Project structures they have used and ...
5
votes
7answers
695 views

Reasons to split project into multiple projects?

What are common reasons to split a development project (e.g. ASP.NET MVC application) into multiple projects? Code organization can be done via folders just as well. Multiple projects tend to generate ...
5
votes
2answers
145 views

Should I check in *.mo files?

Should I check in *.mo translation files into my version control system? This is a general question. But in particular I'm working on Django projects with git repositories.
5
votes
7answers
12k views

Problem with multiple entry Points in the same module

I have multiple entry points in the same module. For example I have an Home entry point for the home page and an Admin entry point for the admin page. <entry-point ...
4
votes
3answers
160 views

Should Interfaces Live In The Same Namespace As The Concrete Classes That Implement Them?

Is there a standard for how solutions/projects are organized in regards to interfaces and the classes that implement them? I'm working on a an MVP, DDD application and would love to hear feedback as ...
4
votes
1answer
347 views

How to make a Visual Studio C++ project structure match the file system structure?

I'm currently using Visual Studio 2010 Professional. In my entire experience with Visual Studio (since version 6), a C++ project structure was always virtual. In other words, when I move files around ...
4
votes
2answers
429 views

ASP.NET MVC Default Project Structure and the Scripts Folder

Is there any advantage to leaving the Scripts folder where it is in the default ASP.NET MVC Project structure. In my mind it makes more sense to create subfolders for scripts, css files, and images ...
4
votes
3answers
1k views

What is the recommended django project structure?

I haven't exactly found the answer to this, maybe there is no best one. Django docs are not clear on this thing. I'm not sure what is a good practice to set up a django project. Sure I have re-usable ...
4
votes
4answers
1k views

ASP.NET MVC Project Structure for larger sites

I'm surprised I can't find more discussions out there about an issue that is really bothering me on our project using ASP.NET MVC. How can you deal with a Visual Studio solution that has multiple ...
4
votes
4answers
1k views

How do you organise your ATG projects?

If you develop for ATG Dynamo, how do you structure your modules and dependencies? How do you structure the projects? source directories, JARs configs etc. How do you build and deploy? What tools do ...
3
votes
2answers
700 views

Clean solution (project) structure with EF, Repositories, Entities

I like to keep the structure of the project as clean as possible. Sample: --BlogApp.sln --BlogApp.Data BlogModel.edmx (the EF mappings) Post.cs (I end up having partial classes in here ...
3
votes
1answer
139 views

Maven: use specific test-classes of project A in project B

I have projects A and B where B requires A. Inside project A I have a utility-class UC that should only be available for JUnit-tests and, therefore, resides in src/test/java of project A. As long as I ...
3
votes
3answers
510 views

Alternative ways for adding doxygen documentation to classes?

Is it possible to separate the doxygen class documentation from the class? Does it make sense? Usually doxygen comments are blowing up the class definition. It's not very easy to get an overview of a ...
3
votes
1answer
340 views

C#: Folder structure with service layer, interfaces, and mocks?

I recently started creating services layers and making declarations like: MyService myService = new MyService(); myService.DoSomething(); This was inspired by some ASP.NET MVC videos and I like the ...
3
votes
2answers
2k views

What Project Layer Should Screen DTO's Live In?

I have a project where we use screen DTO's to encapsulate the data between the Service Layer and the Presentation Layer. In our case, the presentation layer is ASP.Net. The only classes that know ...
2
votes
2answers
155 views

Haskell module not found. What is wrong with my project's file structure?

I have a problem with my project structure: pic-analysis-0.1/AlgTop/Data.hs Functions.hs PNGModify.hs Main.hs Data.hs: module AlgTop.Data ...
2
votes
3answers
107 views

how to start a new project

For the first time ever I am getting the chance to start a new project. I am comfortable with structure of the project with regards to the 'development'. It has the usual 'src', 'lib', 'resources', ...
2
votes
8answers
175 views

Are functions in C/C++ headers a no-go?

I'm working on a very tiny piece of C/C++ source code. The program reads input values from stdin, processes them with an algorithm and writes the results to stdout. I would just implement all that in ...
2
votes
1answer
65 views

Tips/Resources on Structuring Shared Code Libraries in C#/WPF?

I've written a simple desktop application with C#/WPF and I'm now looking to create another, larger application which will share much of the functionality. I'm thinking that I should create three ...
2
votes
2answers
302 views

Help needed while setting up basic multiplatform cmake-enabled project

tl;dr the questions are at the bottom. I am a developer trying something new - my last poison is c++. As I am spending half of my time on my linux laptop and the other half on Win XP PC, I tried to ...
2
votes
3answers
609 views

Where should test classes be stored in the project?

I build all my web projects at work using RAD/Eclipse, and I'm interested to know where do you guys normally store your test's *.class files. All my web projects have 2 source folders: "src" for ...
2
votes
2answers
556 views

How do I push a new project to a shared Mercurial multi-repository?

I have a local machine ("laptop") and a shared Mercurial repository on another machine ("server"). The shared repository is set up as a multi-repository as described in the Mercurial documentation ...
2
votes
5answers
600 views

Should Unit Tests be in their own project in a .Net Solution

Should I start a new project for my unit tests? That would mean that I would get two executables correct? Then I am worried about the namespace organization. Would I be able to put the unit test in ...
2
votes
2answers
1k views

How to structure a website project in Eclipse

I am starting a web application project that will have an Adobe Flex front-end and a PHP/MySQL back-end. I've developed a lot of C++ desktop applications, but am new to building web applications, and ...
1
vote
2answers
79 views

How to use or abuse artifact classifiers in maven?

We are currently attempting to port a very (very) large project built with ant to maven (while also moving to svn). All possibilities are being explored in remodeling the project structure to best fit ...
1
vote
3answers
116 views

Scripts in python package

I develop python application which i decided to turn into package to be installed by easy_install or pip later. I've used search to find several good sources about directory structure for python ...
1
vote
1answer
67 views

How to have separate folders for each app's static files in Django

When I run python manage.py collectstatic, it puts all static files from different apps together in one location (STATIC_ROOT). I would like to have a separate folder within STATIC_ROOT for each app. ...
1
vote
1answer
101 views

Where to to keep the img or css directory conforming to maven project structure?

Maven suggests 'resources' to be placed in src/main/resources directory. For webapps sources, it suggests src/main/webapp I find it a little confusing. My web-app would need images and ...
1
vote
3answers
342 views

Project Directory Structure Problem in Eclipse

I am facing this weird problem ..When i checked out project from svn my whole project was in directory kind of structure ie. my package was like (folder inside another folder) MainProject + + ...
1
vote
2answers
111 views

Remove project folder from website URL

I have a c# website project in visual studio 2010, and all of my .aspx pages are currently being stored in a ~/Forms directory. The problem is that when I want to go to any web pages, they are all ...
1
vote
3answers
213 views

Project structuring and file implementation in Python

I am having a bit of troubles getting a grasp on how to structure my Python projects. I have read jcalderone: Filesystem structure of a Python project and been looking at the source code of CouchApp, ...
1
vote
4answers
259 views

structure for jquery in my mvc project

whats the best way of structure jqueryfiles in my mvc app. Now i have all my scripts in script folder and it starting to be difficult to have a good overview. //thanks
1
vote
1answer
147 views

Architecture(structure)-oriented vs. feature-oriented project structure

The project, I have involved, has an architecture-oriented project's file/folder structure: Root |____ Node1 |____ Event Handlers | |___ <all event handlers of project> ...
1
vote
2answers
131 views

XML Marshalling + Project structure

I want to create a spring-ws web service that eventually marshals a POJO into xml. I'd also like the clients of the web service to unmarshal the xml back into the POJO. How should I structure the ...
1
vote
1answer
602 views

How to setup a project in Netbeans for EJB development using OpenEJB?

We want to evaluate OpenEJB for our application. We have already performed some tests and now we need to start a pilot project. While I've seen how to use OpenEJB for testing purposes (mainly for ...
1
vote
3answers
238 views

Should external libraries be inside or outside my PHP project directory structure?

I'm building my first PHP project, and am not sure where to put external libraries like doctrine. I could put them inside my app, making it easier to reference with a relative path: myproject app ...
1
vote
1answer
66 views

Web service reference location?

I have a Visual Studio 2008 solution that's currently consisting of three projects: A DataFactory project for Business Logic/Data Access. A Web project consisting of the actual user interface, ...
1
vote
2answers
231 views

file layout and setuptools configuration for the python bit of a multi-language library

So we're writing a full-text search framework MongoDb. MongoDB is pretty much javascript-native, so we wrote the javascript library first, and it works. Now I'm trying to write a python framework for ...
1
vote
3answers
150 views

Where should the DAOs go in a project structure?

I am working on a project in VB.Net and need to implement the DAL. I am not quite sure where in my project is the best place to stick the DAOs. Should I stick the DAO in the same namespace as the ...
1
vote
3answers
275 views

Is there any way to make ADT project directory layout more flexible?

I asked this question on the android-developers group but didn't get any response, so I thought I'd try here. The ADT eclipse plugin seems to have a pretty rigid idea of how an Android project should ...
1
vote
1answer
537 views

Nant: Building projects using svn-externals

Using subversion and Nant for building. I have a main project that depends on several sub-projects. The sub-projects exist as separate projects inside subversion. My question is: Should the nant ...
1
vote
3answers
3k views

ASP.NET MVC (Domain Model, Repository, Fluent, Services - Structure for my Project)

In my ASP.NET MVC web application, I have: Domain Model, created by LINQ to SQL Repositories such as UserRepository and OrderRepository IQueryable Fluents as IQueryable Extension Methods such as ...

1 2