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

- 1. Motivations - 1.1. Main features - 1.2. Sub features - 2. Limitations - 3. Usages - 3.1. Install - 3.1.1. via github releases - 3.1.2. via cargo - 3.2. Run - 3.3. Create your first template - 4. Build - 5. Alternatives - 5.1. Generic - 5.2. Specialized

1. Motivations

1.1. Main features

1.2. Sub features

2. Limitations

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

3. Usages

3.1. Install

3.1.1. via github releases

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

3.1.2. via cargo

sh cargo install ffizer

3.2. Run

```txt ffizer 0.3.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 -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) -s, --source uri / path of the template ```

3.3. 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' <

```

The minimal template is an empty dir.

4. Build

5. Alternatives

5.1. Generic

5.2. Specialized

specilazed to a platform, build tool,...