ffizer

crates license crate version

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Actions Status test coverage

crates download GitHub All Releases

ffizer is a files and folders initializer / generator. It creates or updates any kind (or part) of project from template(s).

keywords: file generator, project template, project scaffolding, quick start, project bootstrap, project skeleton

asciicast: ffizer demo

Features

Suggestions are welcomes ;-)

A list of alternatives is available on the wiki, feel free to complete / correct.

Usages

Install

sh curl https://raw.githubusercontent.com/ffizer/ffizer/master/scripts/getLatest.sh | bash

Or download the binary for your platform from github releases, then un-archive it and place it your PATH.

via homebrew (MacOs & Linux)

sh brew tap ffizer/ffizer brew install ffizer-bin ffizer upgrade

via cargo

sh cargo install ffizer --force --features cli

Run

```txt ➜ ffizer --help

ffizer 2.1.0 https://github.com/ffizer/ffizer ffizer is a files and folders initializer / generator. It creates or updates any kind (or part) of project from template(s)

USAGE: ffizer [FLAGS]

FLAGS: -h, --help Prints help information -V, --version Prints version information -v, --verbose Verbose mode (-v, -vv (very verbose / level debug), -vvv) print on stderr

SUBCOMMANDS: apply Apply a template into a target directory help Prints this message or the help of the given subcommand(s) inspect Inspect configuration, caches,... (wip) show-json-schema Show the json schema of the .ffizer.yaml files test-samples test a template against its samples upgrade Self upgrade ffizer executable ```

Self upgrade the executable

sh ➜ ffizer upgrade

Apply a template (to create or update)

```sh ➜ ffizer apply --help

ffizer-apply 2.1.0 https://github.com/ffizer/ffizer Apply a template into a target directory

USAGE: ffizer apply [FLAGS] [OPTIONS] --destination --source

FLAGS: -h, --help Prints help information -y, --no-interaction should not ask for confirmation (to use default value, to apply plan, to override, to run script,...) --offline in offline, only local templates or cached templates are used

OPTIONS: --confirm ask for plan confirmation [default: Never] [possible values: Auto, Always, Never] -d, --destination destination folder (created if doesn't exist) -v, --variables ... set variable's value from cli ("key=value") --rev git revision of the template [default: master] --source-subfolder path of the folder under the source uri to use for template --update-mode mode to update existing file [default: Ask] [possible values: Ask, Keep, Override, UpdateAsRemote, CurrentAsLocal, ShowDiff, Merge] -s, --source uri / path of the template ```

Authoring a template

Start with Template Authoring Tutorial

Few templates

Build

sh cargo install cargo-make --force cargo make ci-flow

Update CHANGELOG.md

sh cargo make update-changelog git add CHANGELOG.md git commit -m ':memo: (CHANGELOG) update'

Release a new version by bump patch (or minoror major)

sh cargo make publish -- patch --dry-run cargo make publish -- patch