use gust
to add recipes and grocery items to a local database,
making putting together shopping lists super quick.
The main prerequisite to get started using this application is Docker.
Docker allows you to build an image of an application and run application
containers, allowing you to use an application such as gust
without
needing to install the Rust programming language, database software, or
other dependencies on your computer.
All you need is to install Docker.
docker build --tag gust --file Dockerfile .
docker run --rm gust
or:
cargo run -- -h
docker run --rm -v gust:/app gust fetch --url https://www.bbc.co.uk/food/recipes/vegetable_noodle_pancake_22079
docker run --rm -v gust:/app gust read recipes
docker run --rm -v gust:/app gust read --recipe 'vegetable noodle pancake'
docker run --rm -v gust:/app gust add list --recipe 'vegetable noodle pancake'
docker run --rm -v gust:/app gust read list
docker run --rm -v gust:/app gust update list clear