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
0 answers
Including header files with full path VisualStudio c++
Let's say I have such project structure
|-- DynamicLoader
| `-- dmc
| |-- DynamicLoader.h
| |-- Loader
| | |-- DynamicLibrary.cpp
| | |-- DynamicLibrary.h
| | |-- LibraryManager.cpp
| | |--…

Qizot
- 1
- 3
0
votes
1 answer
Multi module java app project structure
I am getting task(for learning new technologies) to create a facebook like project with
1. Auth (Spring Boot,Spring security, MySQL, ember.js)
2. Messaging (Spring Boot, Kafka,Cassandra, ember.js)
3. Member (Spring Boot, ember.js)
4. Reporting…

Lilit Mkrtchyan
- 135
- 1
- 2
- 11
0
votes
0 answers
How to organize configuration values in java project
Let's say I'm programming a small RPG game. I have several instances of the Enemy class. They share common properties (they all have a name, an amount of life/strength/dexterity/a weapon, etc), but all these values are different for each enemy. I'm…

cyphics
- 412
- 4
- 17
0
votes
2 answers
What folder structure is required for a publishable Django app?
I have a Django app developed as part of my existing Django site that I'd like to separate out and publish on PyPI. What folder structure is required to make the app suitable for publishing to PyPI and importable via pip?
Current folder structure…

lofidevops
- 15,528
- 14
- 79
- 119
0
votes
1 answer
How can I run a local Django site with a separate app folder?
I'm developing a new Django site. It uses some existing Django apps and I'm building some of my own.
Current folder structure (truncated):
projects/
- mysite/
- .git/
- conf/
- mysite/
- __init__.py
- settings.py
- myapp/
-…

lofidevops
- 15,528
- 14
- 79
- 119
0
votes
3 answers
Best way to organize a python project to easily access all of the modules
I know this question has been asked in a lot of places, but none of them really seem to answer my question.
I am creating a standalone application in python, my current project structure is like so:
Project/
utils/
log.py
api/
…

agupta231
- 1,161
- 2
- 14
- 24
0
votes
1 answer
What is the best way to organize my project of page factory framework
So, i am building a pagefactory testng framework with selenium webdriver for an application which is having login page, registration, settings etc.
I have as of now kept my project structure as separate page classes for each screen like Homepage for…

shashank shekhar
- 155
- 3
- 16
0
votes
1 answer
Angular 5 project structure for small project
I read some articles and documentation about structuring projects folder.
If I am not wrong the recommended structure is like this:
shared module
core module
feature modules
My application is small, about 8 models, and same number of services, and…

Denis Stephanov
- 4,563
- 24
- 78
- 174
0
votes
1 answer
package managers, project structure and migration
I have a solution with multiple projects in it, so for example say 10 testing related projects have a dependency on nunit. Currently my solution structure includes folders for Tools and Lib, so maybe the full nunit download is in Tools and just the…

Berryl
- 12,471
- 22
- 98
- 182
0
votes
0 answers
intellij artifacts not created
I hope somebody can help me on this, I was given some sources to set the development environment but I cannot figure out what kind of project this is, the structure of the folders is like this:
TESTPROJECT
.idea
lib
META-INF
application.xml
src
…

Andrea Paloma
- 11
- 3
0
votes
0 answers
Reading values from config file in ReactApp
We can create reactApp with create-react-app command. It will give a folder structure as follows:
|_ public
|_ src
|_ package.json
|_ README.md
Normally, for javascript we specify values via config.json. Can someone help me to find out what is the…

Vithursa Mahendrarajah
- 1,194
- 2
- 15
- 28
0
votes
1 answer
Symfony 4: Using routes, rendering html documents and managing links
I'm new to Symfony, but I believe I understand how routes and controllers work. I've played with the tutorials on their website and everything was going great. However, I am not able to do some (supposedly) very simple things and I can't find…

Julles
- 41
- 9
0
votes
1 answer
How do I generate a few thousand users for a project using faker.js?
I'm a self taught front end dev and now I'm exploring more facets of our field and I need some help connecting the dots with the backend. Apologies if this question is too broad.
I'd like to use faker.js to set up a few thousand fake users in json…

nyhunter77
- 614
- 2
- 7
- 19
0
votes
1 answer
Node js file flow with express and where to add business logic there
Could you explain how the files flow in node js with express? For example, the application starts with app.js and then it goes to the routes' index.js file etc. In this flow where to add the business logic and how everything connects?

Subhashi
- 4,145
- 1
- 23
- 22
0
votes
1 answer
unable to use WS.url() in Play app tutorial
I am doing a tutorial for Play framework with Scala. I am quite early into the tutorial and i am having a problem with ws. In my class WS is not recognized although that says to use WS.url("url-here") and to import play.api.libs._ which i have done…

mox_mox
- 111
- 2
- 10