Ape 🦧 is small command line tool to generate weekly repeating items from templates for GrandTotal.
You can install ape
either with Homebrew or from source.
brew install qultist/formulae/ape
rake install
Create a template. Templates are written in JSON.
{
"name": "template",
"items": [
{
"name": "item",
"weekdays": ["monday", "wednesday"],
"quantity": 1,
"wage": 1
}
]
}
Generate items for the current month and year.
ape template.json
The month and year can be specified with the -m
resp. -y
options. Use ape -help
for more information.
Ape is released under the MIT license. See LICENSE for details.