You'll need to install cookiecutter.
If you're on a Mac this is as simple as:
brew install cookiecutter
Change to whereever you want to create the new project directory, then run:
cookiecutter gh:chizovation/cookiecutter --checkout v0.0.5
and follow the prompts.
If you want to use the latest unreleased version of this project, you can
either omit --checkout v0.0.5
or specify --checkout main
cookiecutter gh:chizovation/cookiecutter --checkout main
If you use Cookiecutter a lot, you’ll find it useful to have a user config file. By default Cookiecutter tries to retrieve settings from a .cookiecutterrc file in your home directory.
default_context:
# values used with chizovation's cookiecutter
full_name: 'Devin Townsend'
email: 'devin@example.com'
github_owner: 'poozerOrg'
You can read the official documentation here.