mason_cli 0.1.0-dev.57 mason_cli: ^0.1.0-dev.57 copied to clipboard
Mason CLI allows developers to create and consume reusable templates called bricks.
Usage #
Basic #
Run the following command in the current directory:
$ mason get # only first time
$ mason make greeting --name Felix
GREETINGS.md
should be created in the current directory with the following contents:
# Greetings Felix!
Loops and JSON #
Run the following command in the current directory:
$ mason get # only first time
$ mason make todos -c todos.json
TODOS.md
should be created in the current directory with the following contents:
# TODOS
- [x] Eat
- [x] Code
- [ ] Sleep