flâneur

kriasoft/Folder-Structure-Conventions: Folder / directory structure options and naming conventions for software projects

github.com · 663 words · saved by 1 readers

Folder / directory structure options and naming conventions for software projects

Folder structure options and naming conventions for software projects A typical top-level directory layout . ├── build # Compiled files (alternatively `dist`) ├── docs # Documentation files (alternatively `doc`) ├── src # Source files (alternatively `lib` or `app`) ├── test # Automated tests (alternatively `spec` or `tests`) ├── tools # Tools and utilities ├── LICENSE └── README.md Use short lowercase names at least for the top-level files and folders except LICENSE, README.md Source files The actual source files of a software project are usually stored inside the src folder.…

saved by

related reading