Link Search Menu Expand Document

Folder Structure

The following is a high-level outline of a tool suite repository’s folders:

Folder Subfolder Description
.github workflows YAML files used for Continuous Integration in GitHub Actions
docs   optional markdown files for your documentation web site
logs   additional documentation folder to populate with example job logs
options   additional documentation folder to populate with action option summaries
pipelines   subfolders carry scripts that define individual Pipelines
shared   subfolders carry scripts with code shared by multiple pipelines
|——– environments YAML files that create reusable conda environments for job execution
|——– modules scripts with reusable code accessible by running pipelines
|——– options YAML files that expose reusable option families for job configuration
shiny   carries scripts that define R Shiny Apps
|——– apps subfolders carry scripts that define individual apps
|——– shared subfolders carry scripts with code shared by potentially multiple apps
templates   folder to populate with job file or other types of code templates

Thus, you should create one subfolder in pipelines or shiny/apps for each distinct tool in your suite. Those tools can draw on the common code elements that you populate into the shared folders.