Add README.md
This commit is contained in:
parent
816e65a00c
commit
d8569aa43e
1 changed files with 37 additions and 0 deletions
37
README.md
Normal file
37
README.md
Normal file
|
@ -0,0 +1,37 @@
|
|||
# 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.
|
||||
```sh
|
||||
python3 -m build
|
||||
```
|
||||
|
||||
The package can now be installed with
|
||||
```sh
|
||||
pip install dist/comfy-recipes-*-py3-none-any.whl
|
||||
```
|
||||
|
||||
## Building the docker container
|
||||
```sh
|
||||
docker build -t codeberg.org/comfy.city/comfy-recipes .
|
||||
```
|
||||
|
||||
The container can now be ran
|
||||
```sh
|
||||
docker run --rm codeberg.org/comfy.city/comfy-recipes
|
||||
```
|
||||
|
||||
## Building the documentation
|
||||
```sh
|
||||
cd docs
|
||||
mdbook build
|
||||
```
|
||||
|
||||
Documentation can now be served with
|
||||
```sh
|
||||
mdbook serve
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue