DDS4GA

Default Directory Structure for General Applications

The Default Directory Structure of General Applications (or DDS4GA) is supposed to provide a generalized directory structure (or boilerplate) for general purpose languages.

Installation


Migrate to your desired download location on your local machine, using (either) your terminal or console, and download this repository to your system; using git clone:

git clone https://github.com/Justin-Byrne/DDS4GA.git

Usage


Take the contents of the "root" directory, and relocate (or copy & paste) them into your project of choice.

Structure

. (root)
│
│
├── bin               (Output executables...)
│   ├── debug
│   ├── release
│   └── _README.md
│
├── doc               (Notes regarding use...)
│   └── _README.md
│
├── include           (Project header files...)
│   └── _README.md
│
├── lib               (Third-party libraries...)
│   └── _README.md
│
├── spice             (Abstract and testable concepts...)
│   └── _README.md
│
├── src               (Main application's source...)
│   └── _README.md
│
├── test              (Unit testing)
│   └── _README.md
│
└── README.md


Please login or register to comment!