rename project from recipes to comfy-recipes

This commit is contained in:
Emi Vasilek 2023-11-28 15:30:06 +00:00
parent 69e578dba4
commit 67bb8c2266
2 changed files with 3 additions and 3 deletions

View file

@ -5,8 +5,8 @@ RUN apk add --no-cache python3 py3-build py3-hatchling && \
python3 -m build . python3 -m build .
FROM alpine:3.18 FROM alpine:3.18
COPY --from=build /build/dist/recipes-*-py3-none-any.whl / COPY --from=build /build/dist/comfy-recipes-*-py3-none-any.whl /
RUN apk add --no-cache python3 py3-pip && \ RUN apk add --no-cache python3 py3-pip && \
pip install /recipes-*-py3-none-any.whl && \ pip install /comfy-recipes-*-py3-none-any.whl && \
apk del py3-pip apk del py3-pip
ENTRYPOINT ["/usr/bin/recipes-cli"] ENTRYPOINT ["/usr/bin/recipes-cli"]

View file

@ -3,7 +3,7 @@ requires = ["hatchling"]
build-backend = "hatchling.build" build-backend = "hatchling.build"
[project] [project]
name = "recipes" name = "comfy-recipes"
version = "0.0.1" version = "0.0.1"
description = "Smart recipe static site generator" description = "Smart recipe static site generator"
authors = [{ name = "Emi Vasilek", email = "emi.vasilek@gmail.com" }] authors = [{ name = "Emi Vasilek", email = "emi.vasilek@gmail.com" }]