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
Some of the following limitations could change in the future (depends on gain/loss):
Download the binary for your platform from github releases, then unarchive it and place it your PATH.
sh
cargo install ffizer
```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
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
( from scratch without ffizer ;-) )
```sh
mkdir my-template cd my-template
cat > file0.txt < cat > file1.txt.ffizer.hbs < cat > '{{ project }}.txt' < ``` The minimal template is an empty dir. specilazed to a platform, build tool,...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
add a file with a name that will be "rendered" by the handlebars engine
- the file should have {{ variable }},
- Handlebars templating language
4. Build
5. Alternatives
5.1. Generic
5.2. Specialized