Blueprint (binary bp
or blueprint
) is a simple file scaffolding tool that lets you create files quickly based on user-defined templates.
Run cargo install blueprint-cli
.
Open a terminal and run the following:
```
$ curl https://github.com/chancehl/blueprint-cli/releases/download/v1.0.0/blueprint-x8664-apple-darwin.tar.gz --output SOMEFOLDER -L
$ tar -xf SOMEFOLDERblueprint-x8664-apple-darwin.tar.gz
$ mv SOMEFOLDER/blueprint-x8664-apple-darwin/blueprint /usr/bin
$ chmod +755 /usr/bin/blueprint
$ source ~/.bashrc ```
†Replace the version with the one that you are trying to download (latest = 1.0.0). ††Replace the file with the one appropriate for your operating system (see releases page for all options).
/usr/bin
or /usr/local/bin
directorychmod +755
on the binary you moved to the bin
folders``` A simple cli for creating files from templates
Usage: bp
Commands: create Creates a file from a blueprint init Initializes tool by creating the .blueprint directory for you make Creates a blueprint .json file from a given file save Saves a blueprint .json file to the .blueprint folder on disk help Print this message or the help of the given subcommand(s)
Options: -h, --help Print help ```
``
Initializes the local repository for the user by creating a
$HOME/.blueprint` directory.
Usage: bp init [OPTIONS]
Options: -f, --force -h, --help Print help ```
``` Creates a blueprint template from a given file
Usage: bp make [OPTIONS]
Arguments: The file to use as the template
Options:
-n, --name
``` Creates a file from a blueprint template
Usage: bp create
Arguments:
Options: -h, --help Print help ```
``` Saves a blueprint template file to the local blueprint repository
Usage: bp save
Arguments:
Options: -h, --help Print help ```