ffizer

Crates.io Crates.io

Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public. Build Status

Crates.io GitHub All Releases

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

keywords: file generator, project template, project scaffolding, quickstart, project initializer, project skeleton

Motivations

Main features

Sub features

Limitations

Some of the following limitations could change in the future (depends on gain/loss):

Usages

Install

via github releases

Download the binary for your platform from github releases, then unarchive it and place it your PATH.

via cargo

sh cargo install ffizer

Run

```txt ffizer 0.5.0 davidB ffizer is a files and folders initializer / generator. Create any kind (or part) of project from template.

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

FLAGS: -h, --help Prints help information --offline in offline, only local templates or cached templates are used -V, --version Prints version information -v, --verbose Verbose mode (-v, -vv (very verbose / level debug), -vvv) print on stderr --x-alwaysdefaultvalue should not ask for valiables values, always use defautl value or empty (experimental)

OPTIONS: --confirm ask confirmation 'never' or 'always' [default: never] -d, --destination destination folder (created if doesn't exist) --source-folder path of the folder under the source uri to use for template --rev git revision of the template [default: master] -s, --source uri / path of the template ```

Create a template

Rules

A 5 minutes tutorial

  1. create the folder with the template sh mkdir my-template cd my-template

  2. add file that will be copied as is sh cat > file0.txt <<EOF I am file0. EOF

  3. add a template file that will be "rendered" by the handlebars engine

    sh cat > file1.txt.ffizer.hbs <<EOF I am file1.txt of {{ project }}. EOF

  4. add a ffizer configuration file (.ffizer.yaml)

    ```yaml variables:

    ignores:

  5. add a file with a name that will be "rendered" by the handlebars engine

    sh cat > '{{ project }}.txt' <<EOF I am a fixed content file with rendered file name. EOF

Template Helpers / Functions

Helpers extend the template to generate or to transform content. Few helpers are included, but if you need more helpers, ask via an issue or a PR.

To use an helper:

handlebars {{ helper_name argument}}

see Handlebars templating language

String transformation

for the same input: "Hello foo-bars" helpername | example out -- | -- tolowercase | "hello foo-bars" touppercase | "HELLO FOO-BARS" tocamelcase | "helloFooBars" topascalcase | "HelloFooBars" tosnakecase | "hellofoobars" toscreamingsnakecase | "HELLOFOOBARS" tokebabcase | "hello-foo-bars" totraincase | "Hello-Foo-Bars" tosentencecase | "Hello foo bars" totitlecase | "Hello Foo Bars" toclasscase | "HelloFooBar" totablecase | "hellofoobars" toplural | "bars" tosingular | "bar"

Http content

Helper able to render body response from an http request.

helpername | usage -- | -- httpget | httpget "http://hello/..." gitignoreio | gitignore_io "rust"

Templates

Build

sh cargo test cargo build --release

Alternatives

Generic

Specialized

specilazed to a platform, build tool,...