|
We are upgrading our source control (most likely to Vault ) at work and are moving to the branch methodology, and are having some problems with working out the folder structure to use.
We intend to use the Trunk as the development line, and a branch will...
Started by Pondidum on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For example, my initial structure of repository (every project repository.
I prefer fine-grained, very organized, self maintenance process.
Will retrieve the latest branch in the branches folder.
|
|
How would one create, or where could one find an example of a relatively simple C# program that is big enough to require multiple classes and files and demonstrate medium complexity of OOP based interactions?
Some examples would be great.
There are a ...
Started by Netwurk on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Paint.NET
SharpDevelop
Tree Surgeon
SO Questions:
Project Structure for C# Development Effort
What’s a good directory structure for large C#/C++ solutions?
A relatively simple, yet complete project.
|
|
I notice that there's frequently an aspnet_client folder under the standard IIS web folder structure. What is this used for? Is it needed?
Started by Guy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The folder is usually for storing client side Javascript, which ASP.NET uses for things like validation.
In the .NET 1.1 days and before this folder provided ASP.NET with it's JavaScript support.
|
Ask your Facebook Friends
|
Good day all,
I have written an application that i require to have a certain directory structure/. Nothing complex but it will need an "Images" Folder which contains two other folders "Temp" and "Complete".
These folders are in my solution however upon...
Started by Kohan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Also, I wouldn't.
It will take care of all the subfolders.
Create your desired folder structure separate from you project's source code and bin folders, point it to the root folder you created.
Instead.
|
|
I am very new to web development, just wanted to figure out if there is a recommended(preferred) project folder structure to use (may be even specific to Django based projects).
Thank you.
Started by Greg on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
They even have....
That will let you the folder structure and other best practices are covered by Lincoln Loop's Django Best Practices document.
Using the folder structure django-admin and manage.py give you (as Ben suggests).
|
|
I'm using MAMP just for my development environment and haven't really understood the folder structure of /var/www/project-name/ on a web server. I'm wondering whether you're meant to point the web server to the htdocs folder or it's supposed to point ...
Started by Kezzer on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You can then have....
Lolcats.com/lib /var/www/lolcats.com/log
A simple solution is to have a folder structure like so:
/var/www in a directory under /var/www , and each of these have a htdocs folder, which is mounted as the web root.
|
|
How would look like a simple script ( cmd.exe batch, *nix shell , perl , python or whatever .. ) for creating folder structure for development environment.
Suppose we are in a project where we need more than 10 developers to bring in and we do want to...
Started by YordanGeorgiev on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Each developer.
About development environment, I would create the whole directory structure filled with relevant files in a tar/zip file.
The needed directory structure will be created automatically.
|
|
I've been to a few places. Each creates a folder structure the way they think is best. But One place I worked at, they would structure the folders like this:
CompanyName.ProjectName.DataLayer CompanyName.ProjectName.Web CompanyName.ProjectName.VFS (virtual...
Answer Snippets (Read the full thread at stackoverflow):
Just find, I tend to structure them as you ....
While all projects ending in ".Test" would all go in the "Test" solution folder.
I have no problem with putting all the projects in the same physical folder if they belong folder.
|
|
I am currently trying to move a client from one web host to another. They have been using webmail (smartermail) on old host. They have folder set up for organizing their mail.
How would I got about migrating this client? I can fairly easily get the mail...
Started by Roeland on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Onewhat about tar the folder and scp it to the next host?
You didn't mention having IMAP access.
This will copy both the folder structure as well as the messages themselves.
To move mail around.
|
|
I need to intergrate a branch into the trunk but the folder hierarchy of my trunk changed in the meantime. I should still be able to merge sub-folders which preserve the original structure, but when I try I get an error.
Example:
Original structure when...
Started by Manu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
One method:
Restore the original folder hierarchy in the trunk Perform the merge from the branch.
|