Automates the generation of project files and templates for repositories (and others) based on customizable YAML configurations
- Template Generation π: Generates files from templates for consistent repository setup.
- YAML Configuration βοΈ: Easy-to-define templates and file structures in YAML format.
- Repository Customization π: Unique configurations using a "mixin" approach for each repository.
- Content Flexibility βοΈ: Supports external template files, direct content in YAML, and files from URLs.
- Robust Validation π: Ensures configuration integrity with comprehensive validation checks before processing.
- Selective Processing π―: Processes a single or multiple repositories as needed.
- Clean Output π§Ή: Clears existing output directories for up-to-date content generation.
You can download the latest release of structuresmith with this one-liner on MacOS / Linux (amd64 + arm64):
wget -O structuresmith "https://github.com/cbrgm/structuresmith/releases/latest/download/structuresmith_$(uname -s)-$(uname -m)"
You may also download the latest pre-compiled binaries from the GitHub releases page or build structuresmith
from source using Go
(1.21+):
make build
After installing, you can run Structuresmith with the following command-line arguments:
structuresmith --config path/to/config.yaml --output output/directory --templates path/to/templates
podman run --rm -it ghcr.io/cbrgm/structuresmith:latest
Please check out the action.yml and the example workflow.
-c
,--config
: Path to the YAML configuration file.-o
,--output
: Output path prefix for generated files. (default:./out
)-t
,--templates
: Directory for template files. (default:./templates
)-r
,--repo
: Specify a single repository to process.-p
,--max-parallel
: Maximum number of repositories to process in parallel. (default:5
)
Please take a look at the sample configuration.yml in this repository and check out the template directoy.
# Define template groups with a set of files
templateGroups:
# Group for common git files like .gitignore and LICENSE
commonGitFiles:
- destination: ".gitignore"
source: "gitignore.tmpl" # Template for .gitignore file
- destination: "LICENSE"
source: "license.tmpl" # Template for LICENSE file
- destination: ".img/logo.png" # Also supports binary or non-text copies
source: "logo.png"
# Group for Go-specific files like .golangci.yml
projectSpecificFiles:
- destination: ".golangci.yml"
source: "golangci.tmpl" # Template for .golangci.yml
values:
golangciVersion: "1.54.x"
# Also supports downloading text and non-text / binary files from (accessible) URLs
# You may also add values here used for templating after downloading the artifact
- destination: "Dockerfile"
sourceUrl: "https://raw.githubusercontent.com/cbrgm/promcheck/main/Dockerfile"
# Group for templating a whole directory
# You may also add values here as well for templating files while traversing the directory.
- destination: "docs/"
source: "docs_templaes/" # Directory containing multiple template files
values:
foo: "bar"
# List of repositories / projects to apply the template groups
repositories:
# First repository configuration
- name: "example/repo1" # This will create a subdirectory ./out/example/repo1/
groups:
- groupName: "commonGitFiles" # Referencing commonGitFiles group
values:
Author: "Author Name" # Values to substitute in templates
Year: "2023"
- groupName: "projectSpecificFiles" # Referencing projectSpecificFiles group
# Second repository configuration
- name: "example/repo2"
groups:
- groupName: "commonGitFiles"
values:
Author: "Chris Bargmann"
Year: "2023"
# Third repository with individual files but no groups
- name: "some-project" # This will create a subdirectory ./out/some-project/
files:
- destination: "README.md"
content: |
# Welcome to some-project
This repository contains various examples.
- destination: "config.json"
content: |
{
"version": "1.0",
"description": "Configuration file for some-project"
}
templateGroups:
# [Existing commonGitFiles and projectSpecificFiles definitions]
repositories:
- name: "basic-project"
groups:
- groupName: "commonGitFiles"
values:
Author: "Jane Doe"
Year: "2023"
- groupName: "projectSpecificFiles"
templateGroups:
# [Existing templateGroups definitions]
repositories:
- name: "advanced-custom-project"
files:
- destination: "special.md"
content: |
# Special Markdown File
This is a specially crafted markdown file.
groups:
- groupName: "projectSpecificFiles"
- groupName: "commonGitFiles"
values:
Author: "Alice Johnson"
Year: "2023"
templateGroups:
# [Existing templateGroups definitions]
repositories:
- name: "external-resource-project"
files:
- destination: "external_documentation.md"
sourceUrl: "https://example.com/documentation.md"
values:
Author: "Bob Smith"
Year: "2023"
Nested:
Level1: "Value1"
Level2:
Key: "Value2"
templateGroups:
# [Existing templateGroups definitions]
repositories:
- name: "direct-directory-structure-project"
files:
- destination: "docs/"
source: "documentation_templates/" # Source directory containing documentation templates
- destination: "scripts/"
source: "script_templates/" # Source directory for script templates
values:
UseBash: true
Please help us adding more examples.
When Structuresmith generates files, it creates an output directory structure that mirrors the structure defined in your YAML configuration. For each repository, a separate folder is created within the specified output directory.
Structuresmith leverages Go's powerful templating system, allowing you to define dynamic content in your templates. This system provides a flexible way to insert values into your files, making your templates adaptable to different contexts.
- Placeholders: In your templates, you can use placeholders in the form
{{ .VariableName }}
to insert values dynamically. These placeholders will be replaced with actual values when the template is processed. - YAML Configuration: Define the values for these placeholders in the YAML configuration under the
values
key for each template group or individual file. - Example: If your template contains
{{ .Author }}
, you can specify the author's name in the YAML configuration, and it will be replaced in the generated file.
- Structuresmith uses Go's
text/template
package syntax. This includes conditional statements, range loops, and more, providing a rich set of features for creating complex templates. - For detailed information on Go's templating syntax, visit the official documentation: Go's text/template package
We welcome and value your contributions to this project! π If you're interested in making improvements or adding features, please refer to our Contributing Guide. This guide provides comprehensive instructions on how to submit changes, set up your development environment, and more.
Please note that this project is developed in my spare time and is available for free ππ». As an open-source initiative, it is governed by the Apache 2.0 License. This license outlines your rights and obligations when using, modifying, and distributing this software.
Your involvement, whether it's through code contributions, suggestions, or feedback, is crucial for the ongoing improvement and success of this project. Together, we can ensure it remains a useful and well-maintained resource for everyone π.