herms
A command-line manager for delicious kitchen recipes
https://github.com/JackKiefer/herms
Version on this page: | 1.9.0.0 |
LTS Haskell 11.22: | 1.9.0.4 |
Stackage Nightly 2018-09-28: | 1.9.0.4 |
Latest on Hackage: | 1.9.0.4 |
herms-1.9.0.0@sha256:7747aeeca43d001e917069886e770a36dc2fc2dcf2d7e749ef3bb7e808c746ca,3876
Module documentation for 1.9.0.0
There are no documented modules for this package.
Herm’s
HeRM’s: a Haskell-based Recipe Manager (yes, food recipes) for the command line.
Features
- Add recipes! :)
- Look at recipes! :D
- Edit recipes! :DD
- Serving size adjustment! :DDD
- Remove recipes :(
- View metric recipes in imperial units and vice-versa
- Import recipe files
- Generate shopping lists
- Keep track of recipes with tags
- Set default unit systems, serving sizes, and recipe file path in
config.hs
What’s new:
- Yarr! Herm’s now supports both English and Pirate! Simply make it
language = "pirate"
in yourconfig.hs
! - “Pirate” is but the first language that Herm’s is now capable of supporting. We need your help to translate it into others! Currently in progress: Português, Español
Installation
At the moment, Herm’s can only be installed via stack or cabal, but standalone binaries are in the works!
If you’re interested developing/hacking Herm’s instead of just using it, see Contributing.md instead.
Via Stack (recommended):
stack update
stack install herms
Manually cloning and installing from source with Stack
git clone https://github.com/JackKiefer/herms
cd herms
stack update
stack install
Via Hackage and Cabal:
Note: Your milage may vary with dependency resolution
cabal update
cabal install herms
Manually with Cabal:
Note: Your milage may vary with dependency resolution
git clone https://github.com/JackKiefer/herms
cd herms
cabal update
cabal install
Usage
Command-line interface
Herm’s has a pretty intuitive interface for users familiar with other command-line programs!
Below is the exhaustive list of all commands and their functionalities. Take a gander!
Usage:
herms list [-g|--group] [--tags TAGS] list recipes
[--name-only ]
herms add add a new recipe (interactively)
herms edit RECIPE_NAME edit a recipe
herms import FILE_NAME import a recipe file
herms remove RECIPE_NAMES remove the particular recipes
herms view RECIPE_NAMES [-s|--serving INT] view the particular recipes
[-t|--step]
[-c|--convert CONV_UNIT]
herms shopping RECIPE_NAMES [-s|--serving INT] generate shopping list for particular recipes
herms datadir print location of recipe and config files
Available options:
-h|--help Show this help text
-v|--version Show version
RECIPE_NAME index or Recipe name
--sort SORT_ORDER 'tags' to sort by tags
-s|--serving INT specify serving size when viewing.
E.g., 'herms view -s 2 {recipe}' for two servings
-t|--step View recipe in "one-step-at-a-time" mode
(press enter between each direction)
-g|--group group recipes by tags
--tags TAGS show recipes with particular flags
--name-only only list recipes by name
-c|--convert CONV_UNIT view the recipe converted to imperial or metric
E.g., 'herms view 2 -c imperial'
Configuring Herm’s and managing recipe files
Herm’s stores its recipes file, recipes.herms
, and configuration file, config.hs
, in the same directory. Herm’s keeps track of its location! Run herms datadir
to see the full directory path.
config.hs
is a pseudo-Haskell-source-code file with several options for configuring the behaviour of Herm’s. It currently supports the following options:
defaultUnit
: The default unit system to show recipes in. Options:Imperial
,Metric
,None
. Setting toNone
will simply show recipes in whatever unit system they’re stored in.defaultServingSize
: Default serving size to calculate when showing recipes. Can be any non-negative integer; set to0
for no default. This can be useful when you’re always cooking for the same number of people!recipesFile
: The recipes file to use. This option currently supports relative (but not absolute) location, as well; if your data directory is~/herms/data
, for example, and you want a recipe file in your home directoy called~/GrandmasHugeCookbook.herms
, set this option to"../../GrandmasHugeCookbook.herms"
.language
: Human language to use. Currently supported:"english"
,"pirate"
In honor of Logan, Utah’s greatest Breakfast & Brunch.