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.4.1 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 - for test only)

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

Create your first template

( from scratch without ffizer ;-) )

```sh

create the folder with the template

mkdir my-template cd my-template

add file that will be copied as is

cat > file0.txt <

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

- the file should have the .ffizer.hbs extension,

- the extension .ffizer.hbs is removed from the generated filename

- Handlebars templating language

cat > file1.txt.ffizer.hbs <

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

- the file should have {{ variable }},

- Handlebars templating language

cat > '{{ project }}.txt' <

```

Build

Alternatives

Generic

Specialized

specilazed to a platform, build tool,...