recipes

recipes

Jekyll page with recipes

recipes

Jekyll page with recipes

Setup

Needs to install Ruby in order to execute bundle commands

Commands

Publish

bundle exec jekyll serve

Update

bundle
bundle update

Just Build, not serve

bundle exec jekyll build

Serve with drafts

Enables drafts posts in order to preview them

bundle exec jekyll serve --drafts

python dependency management

# save dependencies to file
pip freeze > .\python_requirements.txt  
# install dependencies
pip install -r .\python_requirements.txt