Refers to layout of folders and components to help organize a project's files, whether code or resources
Questions tagged [project-structure]
482 questions
1
vote
1 answer
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, pages, controls, etc.
A Web.Core project consisting of…

Damien Dennehy
- 3,937
- 2
- 19
- 21
1
vote
2 answers
Where to put helper methods used in events for multiple Meteor templates
I know that I can access methods across files by omitting var, but what is the "best practices" project directory structure for defining helper methods that are used by template events across different templates.
For example, I…

delisdeli
- 839
- 9
- 20
1
vote
1 answer
How can I let Ionic know about the change of the project structure?
I have changed the internal "www" folder structure, i.e., moved "scss" folder to a folder "assets", created an "app" folder, etc. Now, when I am trying to run:
ionic setup sass (http://ionicframework.com/docs/cli/sass.html),
it creates a "css"…

Arthur
- 223
- 2
- 16
1
vote
1 answer
Organizing Rails files within app folder for api
All setups I've found use the following folder structure
/app
/controllers
/api
/v1
/views
/api
/v1
/models
This is ok, I guess. But I am trying to get a structure that looks like
/app
/api
/v1
/controllers
/views
…

Nick Ginanto
- 31,090
- 47
- 134
- 244
1
vote
1 answer
Hibernate.cfg.xml not found - Project with Modules
I have a project setup below. I've created services to run alongside android apps locally using java spark and hibernate.
When I try to run up the services module I get /hibernate.cfg.xml not found. This is located in the resources folder of…

Allan Watson
- 21
- 4
1
vote
1 answer
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 it, which will be partially in python, but…

dan mackinlay
- 945
- 1
- 9
- 14
1
vote
1 answer
How to structure projects when multiple applications use the same database
I have a Java web application using Spring, Hibernate and Wicket connecting to a MySQL database that I'd like to refactor and separate into several applications. I started by using Maven's multi-module system but in reality each of the applications…

Jack
- 21
- 1
- 3
1
vote
0 answers
laravel project structure and .htaccess
I've installed new laravel project on a local server and encountered problem that the simple demo routes with "Hello" view was not working, returning 404 error. After I copy/pasted .htaccess file from another project, routes started to work, but…

Axel Stone
- 1,521
- 4
- 23
- 43
1
vote
1 answer
Configure access to View's SubFolders in ASP.NET MVC
I am wondering if it is possible to do following with ASP.NET MVC 5.
I would like to have a OrderController and the following folder's structure
View/Orders/Details/
I need to know how we can configure methods for Details folder?
I mean…

NoWar
- 36,338
- 80
- 323
- 498
1
vote
1 answer
Where to store data files generated by linux software?
I have a Python script with a make install (by default to /usr/local/lib/python2.7/dist-packages/) option available. But the script also generates files with user-specific mutable data during script's normal usage. It seems to me that I should not…

Sashko Lykhenko
- 1,554
- 4
- 20
- 36
1
vote
0 answers
Using an Eclipse Project (Structure) in Android Studio without damaging the Structure
I am absolutely new to stackoverflow (first question :D) so I hope I'll get all the rules in my Head asap :D.
Sooo..here comes my Question:
Is there a Possibility to work on an Eclipse Project in Android Studio, without destroying the Project…

Vic Torious
- 1,757
- 3
- 21
- 24
1
vote
1 answer
Where should I keep my company's parent POM?
We have a root POM in one of our project which more and more people consume. So we're now considering to extract this into a real parent POM (i.e. without and specific build commands).
Now the question is where should this new parent POM…

Aaron Digulla
- 321,842
- 108
- 597
- 820
1
vote
1 answer
How would one configure a Gradle project in which a subproject depends on the main project?
I have a mini-application in my source code which I am trying to move to a separate subproject. However, the mini-application depends on the main project. How would one set up a build.gradle file to reflect this?
Here is my directory structure:
/
…

mattbdean
- 2,532
- 5
- 26
- 58
1
vote
2 answers
How to add a test package to already existing ejb project?
I have an EJB3.0 application which has a ejbModule folder and some packages inside it. Can you Please tell me how and where to add test cases to the project? Do I need to create a separate test project or is there any way where we can add test…

devvapp
- 143
- 1
- 2
- 9
1
vote
3 answers
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 business objects that are going to use them. Or…

uriDium
- 13,110
- 20
- 78
- 138