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

Folders inside VBA Projects Window have disappeared

In VB Editor, inside the VBA Projects window, the folders have disappeared. That is all the sheets used to be in a folder, all the user forms used to be in a second folder, all the modules used to be in a third folder. Now all the sheets, user…
Q.Reply
  • 1
  • 1
0
votes
0 answers

Can I add external jars into every project in IntelliJ and/or Eclipse?

i´ve been working with an external Intranet-Manager and i can load code-snippets into external editors like IntelliJ. My problem is, i want to use the libs of that manager-tool but the code-snippets are just temporary alive, there is no permanent…
Peter Fox
  • 1
  • 2
0
votes
1 answer

Please configure Android SDK in Project structure

if I look at logcat in Android Studio there stands: Please configure Android SDK. If I tap on configure I'm moving automaticaly to Projectstructure. If I choose the Project file in the left menu I see following picture. If you want to see, check the…
0
votes
1 answer

Java Single File for External Classes

I believe the Java way is to keep external classes in separate files. So I've ended up with a directory structure like the following /main/main.java /main/libs/class01.java /main/libs/class02.java /main/libs/class03.java Which would be fine but…
TheLovelySausage
  • 3,838
  • 15
  • 56
  • 106
0
votes
0 answers

How to create a library with shared code in ActionScript 3?

Say I want to create a library.swf file that will contain most of the definitions for images, sprites and (most importantly) code for custom components, that will be used by other sub projects by only linking the library.swf asset without actually…
0
votes
1 answer

Many small classes for Vulkan structs or one BIG class?

I'm learning vlukan and did the Tutorial on their homepage up to where you see the first Triangle on the screen. Within the tutorial everything is put into the main.cpp with it growing easily over 1000 LOC. I want to emphasize that my goal is to…
0
votes
1 answer

loopback4 Project Structure

I come from express.js background and pretty new to loopback framework, especially loopback4 which i am using for my current project. I have gone through the loopback4 documentation few times and got some good progress in setting up the project. As…
Aman Chawla
  • 68
  • 1
  • 7
0
votes
0 answers

Cannot mark directories as "Resources" or "Templates" Content Root in PyCharm

I created a new project in PyCharm Community Edition with a Python 2.7 venv. I would like to add a directory and mark it as Resources Content Root. However, in the Project structure settings, only "Sources Root" and "Excluded" are available. In the…
Ingo Schalk-Schupp
  • 843
  • 10
  • 26
0
votes
1 answer

Best practices for structuring Python project with non python files e.g. DLL, .c, .cpp?

I'm wondering where shall I put my non-python files (DLL, .c, .cpp). Currently I keep it in 'resources' folder under my package destination: my_project/ docs\ my_pkg/ resources/ API.dll __init__.py module.py …
0
votes
2 answers

I have problem with import from subfolders in python project

hello i am working on my first python project and i have problem with importing from subfolders in project for example this my project tree C:\USERS\AHMAD\DESKTOP\myProject │ ├───project │ │ __init__.py │ │ │ ├───core │ │ …
ahmad
  • 13
  • 1
0
votes
1 answer

Call Views from subfolders with one Controller Asp.Net MVC 5

I am trying to use a controller for multiple views. This is the structure of my Controllers folder: Controllers /MainController.cs And this is the structure of my Views folder: Views /Main Index.cshtml /Subfolder …
nexer13
  • 11
  • 3
0
votes
2 answers

Django Rest-framework: Migration No changes detected

I'm new to python and django, I'm creating a simple shopping app. I have followed all the steps to create django rest-framework project, run the server and it works. What I did is created a new folder called Models (deleted the pre-defined…
Omar Fayad
  • 1,733
  • 3
  • 11
  • 27
0
votes
0 answers

Class which can be implemented by multiple backends and generic to code using the class

Sorry for the really bad title. Essentially I have a program using a class I've made called "Cameras". The Cameras class tries to abstract away the underlying media framework I am using to capture images with some cameras. It can either use…
George
  • 124
  • 4
  • 11
0
votes
1 answer

How to expose module names from within src/main directory?

I would like to execute my modules as followed: python -m module1 or python -m module2 I've a project that contains module1 and module2 under this project structure: my-project/ src/ main/ module1/ …
tschaka1904
  • 1,303
  • 2
  • 17
  • 39
0
votes
1 answer

How can I use Vue.js to make a MPA? (Or should this project be a SPA?)

I have just picked up Vue and am trying to figure out the best way to structure this project. Requirements: A basic MPA (traditional site) with about 6 pages. This will be static info. There will need to be a login section where customer will…