Smart recipe static site generator
All checks were successful
ci/woodpecker/push/containers Pipeline was successful
|
||
---|---|---|
.woodpecker | ||
comfyrecipes | ||
.gitignore | ||
.pylintrc | ||
Dockerfile | ||
LICENSE | ||
pyproject.toml | ||
README.md |
Comfy Recipes
Comfy Recipes is a simple application that renders your recipes into HTML.
Documentation is available at https://comfy.city/comfy-recipes/docs
Running
docker run -v ./recipes:/recipes git.comfy.city/Emi/comfy-recipes:latest build /recipes
Building
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 -v ./recipes:/recipes git.comfy.city/Emi/comfy-recipes:local build /recipes
Building the documentation
cd docs
mdbook build
Documentation can now be served with
mdbook serve