A New Project Template
Structure of the Repository: it’s Important.
Here is one way to organize your project folders:
/code
/data
/docs
/output
README.md
Get started
Just copy-paste the following command into your command-line:
mkdir -p code data docs output
Or, create the folders manually with macOS Finder, Windows Explorer, etc.
More directories
If you want more directories, see the advanced branch.
Inspirations/Resources/References
The original insipration of this structure is for data science'y projects using mostly R and/or Python.
http://projecttemplate.net/architecture.html
https://docs.python-guide.org/writing/structure/ ("Structure of the Repository: it’s Important.")
https://kedro.readthedocs.io/en/latest/02_getting_started/04_hello_world.html (Scroll to "Project directory structure")