Crates.io | scaficionado |
lib.rs | scaficionado |
version | |
source | src |
created_at | 2025-02-08 17:19:46.109279+00 |
updated_at | 2025-02-10 04:13:57.152101+00 |
description | A scaffolding tool to create repeatable project structure using files and scripts from local or remote repositories. |
homepage | |
repository | https://github.com/hortonew/scaficionado |
max_upload_size | |
id | 1548187 |
Cargo.toml error: | TOML parse error at line 22, column 1 | 22 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Pronunciation: ska·fi·ci·o·na·do, or scaffold + aficionado.
A scaffolding tool to create repeatable project structure using files and scripts from local or remote repositories.
curl https://sh.rustup.rs -sSf | sh
)cargo install scaficionado
scaficionado -h
# Usage: scaficionado [OPTIONS]
# Options:
# -p, --project-name <PROJECT_NAME> The name of the project to scaffold. Overwrites project_name set in configuration file [default: MyExampleProject]
# -o, --output <OUTPUT> The output directory where the generated files will be placed. Overwrites output set in configuration file [default: generated]
# -c, --config <CONFIG> The configuration file path [default: scaffolding.toml]
# -w, --overwrite Overwrite existing files if set. [default: false]. Overwrites overwrite=false set in configuration file
# -h, --help Print help
# -V, --version Print version
# accept defaults
scaficionado
# with flags for project name and output
scaficionado -p MyTestProjectName -o output_scaffolding
# force overwrite existing files in current working directory
scaficionado -p MyTestProjectName -o . -w
It's hard to spell, so use an alias!
echo "ska='scaficionado'" >> ~/.zshrc
source ~/.zshrc
ska --version
# Project section (optional)
[project]
# Project name (overwrites default). Overwritten by --project-name argument.
name = "MyExampleProject"
# Output directory (overwrites default). Overwritten by --output argument.
# Warning: using "." will overwrite files in the current directory.
output = "generated"
# Controls whether existing files are overwritten (default: false).
overwrite = false
# Scaffolds array
[[scaffolds]]
# Friendly name for the scaffold (used for logging).
name = "Example Scaffold"
# Repository for scaffold files (local path or remote Git URL).
repo = "../example-1"
# Directory within the repository containing templates (default: "templates").
template_dir = "."
# Template files to process
[scaffolds.template]
# List of files that map source repository files to templated destination files in the output location.
# Destination names can use variables defined below (e.g. {{some_environment}}-{{some_count}}).
# {{project_name}} is a reserved variable that comes from project.name (see above).
files = [
{src = "src1.ext.tera", dest = "dest1/src1.ext"},
{src = "src2.ext", dest = "dest2/src2.ext"},
{src = "src3.ext", dest = "{{project_name}}-{{some_environment}}-{{some_count}}/dest3/src3.ext"},
]
# Hook scripts (optional)
[scaffolds.hooks]
pre = "hooks/pre.sh" # Pre-render hook script
post = "hooks/post.sh" # Post-render hook script
# Variables to inject into the context (optional)
[scaffolds.variables]
some_count = 2
some_environment = "development"
You can render an entire directory (recursively) if you want. For example:
[project]
name = "TemplateRepoDirectory"
output = "."
[[scaffolds]]
name = "Local Repo"
repo = "/some/local/repo"
template_dir = "."
[scaffolds.template]
files = [
{ src = "templates", dest = "templates" },
]
[scaffolds.variables]
kind_workers = 3
environment = "development"
It will put the "templates" directory in your current working directory, and any file with a .tera extension will:
Expanded variables apply to the dest section of the scaffold, as well as the expanded tera templated file.
cargo build --release
cargo install --path .
To release a new version to Crates.io, tag a new version as vX.Y.Z, matching the version in Cargo.toml.
Store scaffolding files in:
~/scaffolding/rust-github.toml
ska -c ~/scaffolding/rust-github -o .
to generate a useful CI/CD workflow and Makefile.~/scaffolding/eks-cheap.toml
ska -c ~/scaffolding/eks-cheap.toml -o .
to generate a quick EKS config for a new lab environment.