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
2 answers

Dart: Target of URI does not exist

My Dart app project structure: myapp/ pubspec.yaml pubspec.lock asset/ ...assets build/ packages/ web/ lookups/ AjaxLookups.dart requests/ RESTClient.dart …
IAmYourFaja
  • 55,468
  • 181
  • 466
  • 756
0
votes
1 answer

Dart: web vs web/src

I just read Dart's recommended package layout and am confused on one thing: what content goes in the web package, and what content goes in web/src?
IAmYourFaja
  • 55,468
  • 181
  • 466
  • 756
0
votes
0 answers

Compile multiple submodules in a requirejs build

I have a relatively unique requirejs structure for a game I'm getting started on. The current code is just my start, but I was trying to figure out how to build it as a single javascript file, probably with optimizations as well. The problem I'm…
superlinkx
  • 113
  • 4
0
votes
1 answer

Why can't I run a dart file inside a dir?

I have a simple dart project, it has file structure like: darttest tree . ├── packages │   ├── browser -> /Users/freewind/.pub-cache/hosted/pub.dartlang.org/browser-0.5.20/lib │   ├── meta ->…
Freewind
  • 193,756
  • 157
  • 432
  • 708
0
votes
1 answer

project structure for java web application with javascript providing dependency management, unit testing, ci and support for maven and eclipse?

I am writing a java webapp, but the bulk of the codebase is actually browser-side javascript, which depends on dojo, and uses qunit for unit testing. With serious abuse of maven and git I was able to wire in javascript unit testing and javascript…
Árpád Magosányi
  • 1,394
  • 2
  • 19
  • 35
0
votes
1 answer

What am I to make of the layout of IDEAs default project structure?

So ... I go File > New Project > Java Module and type in (1) a project name and (2) a module name and I get a project structure that makes sense to me: Modules are nested within the project but the .idea file is left outside the scope of the…
Pharfar Phystok
  • 425
  • 4
  • 12
0
votes
1 answer

ASP.NET MVC project structure with multiple subdomains?

I have task to create site that contains some subsites. This subsites will use same database and will have relations. Their domain names should differ. For example, domain is www.mysite.com. Subsites are www.books.mysite.com www.blog.mysite.com…
0
votes
1 answer

Common modules in yiiboilerplate?

Is it possible to put and run modules in yiiboilerplate common section? If it could, how it configured? Thanks,
Wildan Muhlis
  • 1,553
  • 2
  • 22
  • 43
0
votes
1 answer

Suggestions on Yii project structures?

I am currently developing a web project using Yii framework. I'm wondering where is a good place to put all the business logic, in the Controllers, or Models(models here as in mappings from database tables to actual objects)? Both doesn't seem…
0
votes
2 answers

Importing models to encapsulate queries in properties is causing circular import issues

My problem is the following: For a while now I got used to encapsulate a few (the most relevant and reusable) queries of my application in properties within my Django models. to do that, I constantly do: from my_app.models import…
Francisco
  • 1,352
  • 4
  • 13
  • 27
0
votes
1 answer

How to organize webdriver project in eclipse?

I've started a few WebDriver projects in Eclipse Juno but i'm not satisfied with my structure, i think is to stupid and not efficient at all. Beneath you can see my project three now. The TEST_xxx.java files are functions to trigger the files in…
Oleaha
  • 130
  • 1
  • 2
  • 10
0
votes
1 answer

WPF Adding a 'Resource' Project to a solution with multiple WPF applications

I am developing three kiosk-like applications in WPF. They will share a similar look and feel, and I was hoping to create the projects all in the same solution. What I would like to do is add a project to the solution that just holds shared…
Richthofen
  • 2,076
  • 19
  • 39
0
votes
1 answer

OOD - How to desing and structure the projects to avoid redeploying the main Application (factory pattern?)

I would like to check if my understanding in using and implementing factory pattern. Say I am designing an Application to play several Games (chess, poker). The games are loaded from one of the following sources: CSV, XML but I want the ability to…
0
votes
4 answers

Structure and behavior in UML

I had some questions regarding the structure and behavior of a model, using UML, and the relationship between the two : Did you find any limitations for UML regarding the specification or understanding of the relationship between structure and…
melculetz
  • 1,961
  • 8
  • 38
  • 51
0
votes
2 answers

SVN project structure and branching strategy for multiple projects that sometimes overlap

I am trying to come up with a solid SVN repository structure and branching strategy for a small team of four. We have four major and several minor projects in development at any one time, and there is often some overlap between projects. Our…
Wayne Molina
  • 19,158
  • 26
  • 98
  • 163