ffizer
is a files and folders initializer / generator. Create any kind (or part) of project from template(s).
keywords: file generator, project template, project scaffolding, quick start, project bootstrap, project skeleton
python
, ruby
, nodejs
, java
, ...)..gitignore
from gitignore.io
, license from spdx)template
github
/ bitbucket
/ gitlab
/ ...)sh
curl https://raw.githubusercontent.com/ffizer/ffizer/master/scripts/getLatest.sh | sh
sh
brew tap ffizer/ffizer
brew install ffizer-bin
ffizer upgrade
Download the binary for your platform from github releases, then un-archive it and place it your PATH.
sh
cargo install ffizer --force --features cli
```txt ➜ ffizer --help
ffizer 1.2.0 https://github.com/ffizer/ffizer ffizer is a files and folders initializer / generator. Create any kind (or part) of project from template.
USAGE:
ffizer [FLAGS]
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
SUBCOMMANDS: apply Apply a template into a target directory help Prints this message or the help of the given subcommand(s) upgrade Self upgrade ffizer executable ```
```sh ➜ ffizer upgrade --help
ffizer-upgrade 1.2.0 https://github.com/ffizer/ffizer Self upgrade ffizer executable
USAGE: ffizer upgrade
FLAGS: -h, --help Prints help information -V, --version Prints version information ```
```sh ➜ ffizer apply --help
ffizer-apply 1.2.0 https://github.com/ffizer/ffizer Apply a template into a target directory
USAGE:
ffizer apply [FLAGS] [OPTIONS] --destination
FLAGS: -h, --help Prints help information --offline in offline, only local templates or cached templates are used -V, --version Prints version information --x-alwaysdefaultvalue should not ask for valiables values, always use defautl value or empty (experimental)
OPTIONS:
--confirm
use a local folder as template
sh
ffizer apply --source $HOME/my_templates/tmpl0 --destination my_project
use a remote git repository as template
sh
ffizer apply --source https://github.com/ffizer/template_sample.git --destination my_project
output
```sh Configure variables
projectname: myproject
Plan to execute
see Template Authoring - ffizer WIP
ffizer/templates_default
: the default collections of templates for ffizer (WIP)davidB31 / cg-starter-multi-rust
· GitLab Project template for Multi-Bot in Rust on CodinGame.davidB/templates
: repository to host the my collections of templates to used with ffizer.ffizer-template
ffizer/template_sample
: a simple template for ffizer used for demo and testsh
cargo install cargo-make --force
cargo make ci-flow
Update CHANGELOG.md
sh
cargo make update-changelog
git add CHANGELOG.md
git commit -m ':memo: (CHANGELOG) update'
Release a new version by bump patch
(or minor
or major
)
sh
cargo make publish -- patch --dry-run
cargo make publish -- patch
specialized to a platform, build tool,...