My personal recipe collection, deployed at cook.calebschoepp.com.
Recipes are stored in Cooklang format in the recipes/ directory. The website is vibe coded and built with Hugo, deployed to GitHub Pages.
Interact with the project using the justfile:
# List all available commands
just
# Sync recipes from .cook files to Hugo markdown
just sync-recipes
# Run development server
just dev
# Lint recipe files
just lint
# Run end-to-end tests
just test
# Build the site
just buildrecipes/*.cook- Recipe files in Cooklang format (source of truth)content/recipes/*.md- Generated Hugo markdown files (auto-synced from .cook files)justfile- Task automation and build commands