Files
podi/doc/recipes.md
2022-02-22 06:54:02 +01:00

575 B

Adding your own recipes

$ ./podi recipe hello           # install helloworld-example
$ mv .pod/{hello,foo}           # rename to foo and modify
$ git add .pod/foo
# PROFIT!

Adding your own recipe repository

Just expose a directory with recipes, and add index.txt in that directory:

$ find -type f | grep -v index.txt | sed 's/^\.\///g' > index.txt

Then add the index-url to the podi script:

RECIPE_REPOS="https://raw.githubusercontent.com/coderofsalvation/podi/master/recipe/.index.txt https://yoururl/.index.txt"

Profit!