Questions tagged [project-structure]

Refers to layout of folders and components to help organize a project's files, whether code or resources

482 questions
0
votes
1 answer

Should I include my admin page into the angular project or should i create a seperate one?

Hey i'm working on a frontend for my SpringBoot Application. I'm just starting to learn Angular. I'm not sure if there is a security issue if i create my admin-page in the same project. Admin- and User-Page would share a lot of code but admin…
Dari
  • 3
  • 1
0
votes
1 answer

SpringBoot: Where to put internal container classes

I have the following project structure: app | |--> config |--> controller |--> dto |--> exception |--> model |--> repository |--> service |--> utils 'model' is used for the POJO's. Every database table has a own class with Entity annotation. 'dto'…
user2622344
  • 956
  • 1
  • 10
  • 26
0
votes
1 answer

How could be the layered architecture / project structure? - Vaadin on top of Spring Boot Reactive with MongoDB reactive

Currently I have the following project structure: packages: view controller service model repository config util The view package contains the view classes of Vaadin. Example case: I would like to retrieve some data from mongoDB database after…
tqnone
  • 13
  • 7
0
votes
0 answers

After the IDEA was imported into the project, the yml file was not recognized

When I was learning springboot, I encountered the following problems: After the idea is imported into the project, the yml file is not recognized.Each time file type is configured, there is still no icon for springboot.When the IDEA is opened again,…
constant
  • 1
  • 1
0
votes
3 answers

Git and CMake project structure, external libraries and packages

I'm relatively inexperienced with CMake projects and also with Git. If I use external libraries, e.g. in my case JsonCpp and OpenVR, is it a bad approach to place the packages/libraries inside my project structure and push them with my own stuff to…
muella91
  • 189
  • 1
  • 2
  • 12
0
votes
5 answers

Android Studio: file-> "Project Structure" missing options to change application id, version, version name, etc

So every time i updated my app, i use file -> project structure to increase the version and put version name. I also use it to name application id when i want to fork my codes into different app. but today I can't find application id, version,…
0
votes
1 answer

Is there any auto incremention machanim for storing keys' values in redis with redigo wrapper?

I'm new to go programming language and just wanted to write a small web app project with a good architecture. I get some specific recangle objects through a post request. type Rectangle struct { X int //starting x coordinate Y int…
0
votes
1 answer

Angular8 How to load resource inside a sub project assets folder in a good practice way?

I'm working with angular 8, I created a sub-project inside the main project. The folder structure looks like the screenshot: Now I'm working on my sub-proj01, and I want to use an "img" tag to import an xxx.svg file inside the sub-proj01's assets…
Lang
  • 943
  • 13
  • 33
0
votes
2 answers

Node Js Complex Design Principle (Promise, async/await)

This is a common process for me in my previous works, so i usually have a very complex use case take for example async function doThis(){ for (100x) { try { insertToDatabase() await selectAndManipulateData() …
0
votes
0 answers

Is there any boilerplate available for node.js/express.js project ? What practises should be followed in node projects?

I want to list out the ways that is necessary to write modular code structure that is used for scalable apps. Is there any boilerplate, project structure or best practises available for writing scalable code?
Devang Padhiyar
  • 3,427
  • 2
  • 22
  • 42
0
votes
1 answer

Import SCSS file with font url into different scss files with different folders level

I have a Global scss file that have a font-face: @font-face { font-family: "My Font"; src: url("../../fonts/my-font.ttf"); } This Global.scss file is imported from different scss files, some of these files are on the same level as the Global…
Alex
  • 5,971
  • 11
  • 42
  • 80
0
votes
2 answers

Bundle assets with libGDX dependency

I'm making a card game engine on top of libGDX for many similar games I plan to make. Here's how I plan to structure this: each game is a separate project and the engine is a dependency added to the core module. The engine itself will have a lot of…
Nicolas
  • 6,611
  • 3
  • 29
  • 73
0
votes
1 answer

Existing android studio project modules issue

I have been trying to open my existing android studio project which was working perfectly fine, but now is giving me issues. I also tried to import it and the issue persisted. The APP folder on ANDROID VIEW is not expandable and when I click on it,…
0
votes
0 answers

suggestion needed about cocos2d c++ source code sturcture please

I am a Java developer. Recently I am researching writing game with c++ and cocos2dx engine. When I trying to read other people's source codes, I find almost all people put all .cpp and .h files into one directory, which make a Java developer a bit…
Lang
  • 943
  • 13
  • 33
0
votes
1 answer

Optimize the use of Git to manage projects related with a common origin and repository

This is my current situation: I am developing an online course platform in PHP. The core of the platform is in a server folder called platform. The frontend of each course (html, javascript, images, etc ...) is in its own folder, for example:…
Juan Antonio Tubío
  • 1,172
  • 14
  • 28