Wissotsky/HebrewCookingRecipesViewer
0
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
Local usage
This is a simple Go + htmx web app that reads the recipes.parquet file (from the Hebrew Recipes dataset) and provides a searchable viewer.
Steps:
- Put
recipes.parquetfrom the Hugging Face dataset into thedata/directory next to this repository root. - Build and run the app (PowerShell):
go mod tidy; go build -o hebrewrecipesviewer.exe
./hebrewrecipesviewer.exe- Open http://localhost:8080 in your browser.
Notes
- The app extracts
name,description,recipeInstructions, andrecipeIngredientfields from theJsonLdcolumn and builds a simple searchable text blob. - If
data/recipes.parquetis missing the server will still start but no recipes will be loaded; download the parquet from the dataset page: https://huggingface.co/datasets/Wissotsky/HebrewRecipes
