Refers to layout of folders and components to help organize a project's files, whether code or resources
Questions tagged [project-structure]
482 questions
0
votes
2 answers
Executables in subfolder in path
I wish to place my executables in subfolders:
$ tree
.
├── bin
│ ├── exec.py
│ ├── method1
│ │ ├── exec1.py
│ │ └── exec2.py
│ └── method2
│ ├── exec1.py
│ └── exec2.py
If I include…

Vipul
- 23
- 7
0
votes
2 answers
Create optional sub-packages in intellij
I have my project structure something like this.
|--utils
| |
| |--MyFileReader.java
But I want to change it into this one.
utils
|
|--readers
| |
| |--MyFileReader.java
Can anyone tell me the preffered way to do that with intellij preserving…
user6770912
0
votes
1 answer
Android setup library dependencies for module
The Background:
I have an Android project, where I want to refactor specific functions into one module. My app structure looks like this:
MyApp
|--app
|----build.gradle
|--myNewModule
|----build.gradle
|build.gradle (MyApp…

Eve
- 1,153
- 1
- 15
- 34
0
votes
2 answers
Java web.xml location for embedded jetty
I'm trying to understand the way we should configure the web application.
Now i have a simple gradle project with embedded jetty
Dependencies:
dependencies {
compile('org.eclipse.jetty:jetty-servlet:9.3.10.v20160621')
…

Silk0vsky
- 941
- 1
- 18
- 34
0
votes
1 answer
Silverlight Application Project Structure - How much is too much?
My team is working on creating our first Silverlight 4 Application. First of all to give a bit of detail on the actual project. It will be Silverlight 4 that is designed to run Out-oF-Browser and we will be using WFC for data services with our own…

Mitchel Sellers
- 62,228
- 14
- 110
- 173
0
votes
1 answer
SpringMVC With Ajax & Jquery
Hi Everybody,
Here I am using
Java - 1.7,
Tomcat Web Server 1.8
Spring 4.x
ajax
Jquery "https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"
My problem is when I am trying send values from ajax to spring controller I am getting one…

DaDheeChi
- 11
- 2
0
votes
1 answer
PyCharms: Project Tool Window, Project structure, folder names in square braces
When I started using PyCharms, the first directory for the project was 6.1_Neeraj, which is marked in red rectangle in the picture. Later I copied the contents to the new directory 1.1. However, in the project directory structure, 6.1_Neeraj is…

Neeraj Hanumante
- 1,575
- 2
- 18
- 37
0
votes
0 answers
Can someone explain projects in Dev C++ and how to create and add files, etc to it
I really don't understand the use of creating a project in coding. I have always done "new source file" when I'm writing some code. The tutorials I see always creates a new project when they start coding. I have a lot of question about projects like…

Ekown
- 438
- 6
- 12
0
votes
1 answer
Maven recommends not using test-jars, yet I would end up with a cyclic dependency
I have 2 modules in the following structure
lib
src/main/java
MyInterface
src/test/java
MyMockObject implements MyInterface
MyTest1 - uses MyMockObject
main dependsOn: -lib test-jar scope: test & -lib
src/test/java
MyTest2 - uses…

mangusbrother
- 3,988
- 11
- 51
- 103
0
votes
1 answer
Angular 2 and NodeJS project setup
I've got some basic questions concerning the project structure of a MEAN-app including Angular2. I've followed the starting tutorial of angular.io to build a really basic Angular2 app. Now I try to integrate this app inside a NodeJS project…

Bruno
- 894
- 11
- 32
0
votes
1 answer
Django, override pip installed app in my own app
Suppose I pip installed django-nice for my project and it is installed in nice directory under my virtualenv.
There are times I'd like to override or extend the django-nice
I created nice-custom in my apps folder and placed the override code…

eugene
- 39,839
- 68
- 255
- 489
0
votes
0 answers
Flask Restful project structure
This is my current structure:
├── app
│ ├── auth
│ │ ├── __init__.py
│ │ ├── models.py
│ │ └── resources.py
│ ├── __init__.py
├── app.db
├── config.py
├── env
└── run.py
Auth module should take care of all the token based…

J. Doe
- 1
0
votes
1 answer
Creating multi project application
I'm new to Aurelia and I want to create an app that call for other apps.
Example : I want to create 3 projects, project A, project B and common and wish to call common in both projects A and B.
I've tried some examples with npm and others, but this…

guilafourmi
- 21
- 1
0
votes
1 answer
log4j structuring for consistent logging
I am trying to implement log4j logging for MyTest class. The package structure for the code is as described using the code under. Currently my log4j.properties is placed under the resources of trial package.
I do get the logs sometimes but at times…

Naman
- 27,789
- 26
- 218
- 353
0
votes
1 answer
Dependencies between projects with Haskell Stack build tool -- best workflow?
I am just beginning a relatively large Haskell project using the stack package manager and build tool, and I am trying to figure out the best way to split it up into several stack projects with dependencies between them.
Essentially, while I believe…

exists-forall
- 4,148
- 4
- 22
- 29