mirror of
https://github.com/coderofsalvation/podi.git
synced 2025-12-15 19:37:42 +01:00
575 B
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!