Smart recipe static site generator
Find a file
Emi Vasilek cc9206306a parsing: also accept short ingredients without amounts
for example 'oil' will now be allowed, previously it would have to be `1
spoon oil` when sometimes people don't know the amount
2024-10-12 00:12:09 +02:00
comfyrecipes parsing: also accept short ingredients without amounts 2024-10-12 00:12:09 +02:00
.gitignore add gitignore 2023-11-11 13:49:13 +01:00
.pylintrc allow using a single string as an ingredient instead of a dict 2023-11-28 14:26:34 +00:00
Dockerfile Dockerfile: use python image instead of alpine, update 2024-10-11 22:20:08 +02:00
LICENSE Add LICENSE 2023-11-17 19:44:20 +01:00
pyproject.toml pyproject.toml: add dependency required with newer lxml 2024-10-12 00:04:40 +02:00
README.md update URLs 2024-10-11 22:21:30 +02:00

Comfy Recipes

Comfy Recipes is a simple application that renders your recipes into HTML.

Documentation is available at https://comfy.city/comfy-recipes/docs

Building the python package

Make sure you have hatchling and build modules installed.

python3 -m build

The package can now be installed with

pip install dist/comfy-recipes-*-py3-none-any.whl

Building the docker container

docker buildx build -t git.comfy.city/Emi/comfy-recipes:local .

The container can now be ran

docker run --rm git.comfy.city/Emi/comfy-recipes:local

Building the documentation

cd docs
mdbook build

Documentation can now be served with

mdbook serve