ffizer
is a files and folders initializer / generator. It creates or updates 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
/ ...)A list of alternatives is available on the wiki, feel free to complete / correct.
sh
curl https://raw.githubusercontent.com/ffizer/ffizer/master/scripts/getLatest.sh | bash
Or download the binary for your platform from github releases, then un-archive it and place it your PATH.
sh
brew install ffizer/ffizer/ffizer-bin
ffizer upgrade
```sh
cargo binstall ffizer
cargo install ffizer --force --features cli ```
```txt ❯ ffizer --help
ffizer is a files and folders initializer / generator. It creates or updates any kind (or part) of project from template(s)
Usage: ffizer [OPTIONS]
Commands: apply Apply a template into a target directory inspect Inspect configuration, caches,... (wip) show-json-schema Show the json schema of the .ffizer.yaml files test-samples test a template against its samples help Print this message or the help of the given subcommand(s)
Options: -v, --verbose... Verbose mode (-v, -vv (very verbose / level debug), -vvv) print on stderr -h, --help Print help information -V, --version Print version information
https://ffizer.github.io/ffizer/book/ ```
```sh ❯ ffizer apply --help
Apply a template into a target directory
Usage: ffizer apply [OPTIONS] --source
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 · my-project ✔ packagename · my_project
Plan to execute
Start with Template Authoring Tutorial
git clone ... && cd ... && rm -Rf .git
)cp -R ... ...
)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 testffizer/tests/data
at master · ffizer/ffizersh
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 --execute patch