Smart recipe static site generator
Go to file
2023-11-30 03:09:36 +00:00
comfyrecipes fix generate-* subcommands from other directories 2023-11-30 03:09:36 +00: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 rename project from recipes to comfy-recipes 2023-11-30 03:09:34 +00:00
LICENSE Add LICENSE 2023-11-17 19:44:20 +01:00
pyproject.toml update urls in pyproject.toml 2023-11-30 03:09:35 +00:00
README.md Add README.md 2023-11-30 03:09:35 +00: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 build -t codeberg.org/comfy.city/comfy-recipes .

The container can now be ran

docker run --rm codeberg.org/comfy.city/comfy-recipes

Building the documentation

cd docs
mdbook build

Documentation can now be served with

mdbook serve