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
Is it smart to use django as backend only?
I'm creating right now a new application which will be kind of start'up. User can register it and use many tools inside. I hope there will be at least thousands hits per day.
I'm sure that it will be using python & django because it's technology I…

tomeusek
- 59
- 1
- 3
0
votes
2 answers
Javascript best practice use
I'm looking for the best practice use of external private Javascript file.
I have a project with many different HTML files.
My question is what is the best practice, is it to have 1 .js file for all HTML pages or should I have a seprate .js file for…

H. Gorodesky
- 39
- 5
0
votes
1 answer
error C2016 (C requires that a struct or union has at least one member) and structs typedefs
In my C-project there are some entities. For every entity there are header file and a source file. In the header file I define couple of structs.
For example, let's say our entity is Baz. Then we have baz.h and baz.c. Inside baz.h there will be…

abcxyz
- 147
- 7
0
votes
1 answer
Erlang deps loading
I'm trying to write erlang first app. It has
https://github.com/emedia-project/erlffmpeg in deps, I have almost the
same Makefile.
When I run erlang shell in erlffmpeg dir and eval README
example, all ok. But When I do it from my project's dir, I…

zarkone
- 1,335
- 10
- 16
0
votes
1 answer
ld: warning: too many personality routines for compact unwind to encode
I just changed the folder structure of the IOS project in Xcode 6.3 and the warning on the image appeared.Solutions already on the internet are appropriate.I have copied the code in one folder and pasted it in another one.Is it some kin

Suraj K Thomas
- 5,773
- 4
- 52
- 64
0
votes
1 answer
Have multiple directories in processing when using the processing-ide?
I currently began a new project with processing and first started with the
processing-ide that comes together with the installation.
Is it possible to structure the project into subdirectories instead of having to put all classes into the single…

logical x 2
- 311
- 4
- 18
0
votes
1 answer
Where to store software generated user-specific image files in Python Django?
I want to view html page with images dynamically generated on user's request by Python script in Django. I do not need to store them permanently, only to generate response html page from template. Where should I store these images (or should I)?…

Sashko Lykhenko
- 1,554
- 4
- 20
- 36
0
votes
1 answer
Project structure. Scientific Python projects
I am looking for a better way to structure my research projects. I have the following setup:
There are projects a,b,c and a library lib. Each project tackles a different research question and the library carries code that is used across projects.…

bjonen
- 1,503
- 16
- 24
0
votes
2 answers
Python: 2 level sibling import
given the following file structure (example)
library_project\
|- __init__.py
|
|--- utils_a\
| |- __init__.py
| |- util_functions_a.py
|
|--- utils_b\
| |- __init__.py
| |
| |--- utils_b_1\
| | |- __init__.py
…

user3699164
- 3
- 3
0
votes
2 answers
Where to put static files to which only the application is supposed to have access?
In an MVC application I have a number of rtf files which are used as templates. The app loads them, fills the blanks and outputs the result as FileContentResult. Users of the site are not supposed to have direct access to those rtf files. Where…

jahu
- 5,427
- 3
- 37
- 64
0
votes
1 answer
Project Structure for Java EE7 using Maven (Core App Ejb, Children apps Ejb)
I am trying to create a project structure using Maven and Eclipse, I uses the archetype called jboss-ee6-webapp-ear-archetype (7.1.3.Final) and It generates the structure that I want to use with 4 projects Parent,EAR,EJB and WEB. Once I get this I…

jonathan
- 422
- 4
- 12
0
votes
1 answer
Import package "x" in module "x": prevent importing itself and import package instead
I run into problems when using a project structure as suggested here: What is the best project structure for a Python application?.
Imagine a project layout like this:
Project/
|-- bin/
| |-- project.py
|
|-- project/
| |-- __init__.py
| |--…

S1lentSt0rm
- 1,989
- 2
- 17
- 28
0
votes
1 answer
How i can use one project with sub projects in another project as sub project (sub module) with gradle?
There is some gradle - android project A. It's Depends on a few gradle sub-projects, that situated each on its own git repository, and connected, to our project by git sub module(I can look it in my owr repository as it sub directory of my…

Yevgen Kulik
- 5,713
- 2
- 22
- 44
0
votes
2 answers
Why do I get errors when I try to include a header file in C++?
I am trying to make a chess game. I have made two header files and their cpp files : Pieces.h and ChessBoard.h. I have included Pieces.h in ChessBoard.h and it's compiling fine. But I want to have a method in Pieces that requires ChessBoard as a…

user2709885
- 413
- 2
- 8
- 16
0
votes
1 answer
Copy dependent projects needed files in Visual Studio
I have a sample project that is structured like the below image:
The WebApplication2 has depended on ClassLibrary1 at publishing time like this:
I want to copy some needed file in ClassLibrary1 project after publishing in a specific folder, for…

Saeed Hamed
- 732
- 2
- 10
- 28