ffizer

Project Status: Concept – Minimal or no implementation has been done yet, or the repository is only intended to be a limited example, demo, or proof-of-concept. License: CC0-1.0 Build Status

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

Run

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

USAGE: ffizer [FLAGS] --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

OPTIONS: -d, --destination destination folder (created if doesn't exist) -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' <

```

The minimal template is an empty dir.

Build

Alternatives

Generic

Specialized

specilazed to a platform, build tool,...