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

SOA, RPC and interproject dependancies

My understanding of SOA: Various systems in a business need to do security checks, so it makes sense to use the same process and therefore have a SecurityCheck service. The service could then be called in a variety of ways - soap, rpc, http…
James
  • 1,720
  • 5
  • 29
  • 50
0
votes
1 answer

Is there a way to upgrade and maintain dependencies programmatically for all Spring boot projects in a microservice architecture?

In a Spring boot microservice architecture you have many project folders each representing each service. I'd assume you have mult-module maven project with all services each having their own subdirectory in a parent folder, each having their own…
dukethrash
  • 1,449
  • 4
  • 15
  • 25
0
votes
1 answer

How to build interdependent solutions in VSTS

I have a project structure like so: Repos\WebApi Repos\WebPortal Repos\BackendService Repos\Extensions Each of them is in its own repository, has its own solution but all of them depend on the Extensions project. In the past I've used CCNET and been…
Corey
  • 466
  • 1
  • 5
  • 17
0
votes
2 answers

Pyspark: Is it required to pass additional modules as --py-files argument in a project

I am creating a pyspark application which is modular in nature. My code struture is like: ├── main.py ├── src │   ├── __init__.py │   ├── jobs │   │   ├── __init__.py │   │   └── logic.py │   └── utils │   ├── __init__.py │   └──…
Jugraj Singh
  • 529
  • 1
  • 6
  • 22
0
votes
1 answer

Setup Gatling performance tests in same project as production code

I would like to move our performance Gatling tests from a separate project (where they are now) into the same project as our source code and normal tests. Ideally, I would like to have the following structure: root-project | |--src | …
Alex Ntousias
  • 8,962
  • 8
  • 39
  • 47
0
votes
0 answers

Es6 modules - Best practice for events

I have some events, and to make them a bit neater I have grouped them together in a module export function myevents () { $('.btn').on('click', function() { //do stuff }); $(document).on('click', ".delete-product", function(){ //Do…
LeBlaireau
  • 17,133
  • 33
  • 112
  • 192
0
votes
1 answer

pycharm: indexing installed package instead of sources root

I cloned a github repository of a package, MDAnalysis, which I also have installed under /usr/local/lib/python3.5/dist-packages/MDAnalysis. I opened the cloned repository in PyCharm and set it as source root, like in the picture below: My problem:…
jmborr
  • 1,215
  • 2
  • 13
  • 23
0
votes
1 answer

Where to store external images Intellij GWT Projects

I'm using Intellij and GWT, I created a GWT project and Intellij has automatically created the directory structure. I have then tried to add an external image, however I am getting a 404 when trying to retrieve the image. Project structure is…
Macca Rooney
  • 13
  • 1
  • 8
0
votes
1 answer

create gradle multimodule project for AEM using lazybones templates

I had heard of lazybones, which is a command line tool for project creation and it is more interactive or customizable than Maven Archetypes. Thus, I created a maven multimodule aem project using lazybones. The Command and template for AEM…
Manisha Bano
  • 1,853
  • 2
  • 22
  • 34
0
votes
1 answer

Where should referenced libraries be placed in a maven project?

I am new to maven and I am trying to design an app which uses a lot of referenced libraries (jars and class folders) my question is where referenced libraries should be placed in project structure? If in src/main/resources then how to do this…
tur1ng
  • 1,082
  • 1
  • 10
  • 24
0
votes
0 answers

Customizing RazorViewEngine

Is it possible in Asp.Net MVC4 to create a file structure similar to this one: Areas/Finance/Base/Product/ ProductController.cs Views (folder) Models (folder) Note that Base is a variable. There will be another folder called Documents, etc.
0
votes
1 answer

How to depend on project with WebApplicationInitializer?

I have a project structure, where I have some basic projects, where all the features are implemented and on top of that some projects for different kinds of usage/deployment as follows: foo-core foo-production, depends on foo-core (produces a war…
schauk11erd
  • 624
  • 9
  • 21
0
votes
1 answer

Organizing files and folders structure

I've been working with web-based solutions for some years now, Mostly PHP and WordPress projects, as this refers to. I'm not quite sure, if I structure my projects in the best way. So, how do I structure my project in the right way? For example, I…
0
votes
2 answers

Enterprise Application in .NET

can you give me some hit or give me explanation how to create Enterprise App in .net, and how projects type use or how should be structure of this projects? I newbie in EE and I read about it, but for me is the best explanation on real world…
Denis Stephanov
  • 4,563
  • 24
  • 78
  • 174
0
votes
0 answers

How can my custom Visual Studio project support nested projects?

I'm trying to make a custom Visual Studio project type using VSProjectSystem. I'd like my project to basically work like a SolutionFolder project type, where it is simply a container for subprojects. The custom project will represent a whole…