projectdir           <- Your project main folder. It is initialized as a GIT repository
│
├── _research        <- folder for WIP scripts, code, notes, comments,
|                        to-dos and anything in an alpha state
│
├── data             <- Folder that contains all data. It is **immutable and add-only!**
│   ├── simulations  <- Data resulting directly from simulations
│   ├── exp_pro      <- Data from processing experiments
│   └── exp_raw      <- Raw experimental data
│
|
├── videos           <- self-explanatory
├── plots            <- self-explanatory
├── notebooks        <- Jupyter, Weave or any other mixed media notebooks
│
├── papers           <- Scientific papers resulting from the project
│
|
├── scripts          <- Various scripts, e.g. simulations, plotting, analysis,
|   |                   The scripts use the `src` folder for their base code.
│   └── intro.jl     <- simple file that uses DrWatson and uses its greeting.
|
├── src              <- Source code for use in this project. Contains functions/modules
|                       used throughout the project and in multiple scripts.
│
|
⋱…… README.md        <- Optional top-level README for anyone using this project.
├── .gitignore       <- by default ignores data, plots, videos, notebooks, _research,
|                        Manifest.toml, latex-compilation.
├── Manifest.toml    <- Contains full list of exact package versions used currently
└── Project.toml     <- Main project file, allows activation and installation.
                        Includes DrWatson by default.
