adds 2025 materials

This commit is contained in:
Pamela Hathway 2025-07-20 22:10:03 +02:00
commit e85b3b21ca
23 changed files with 378 additions and 0 deletions

View file

@ -0,0 +1,17 @@
# Dough ingredients
FLOUR_PER_PIZZA = 250 # grams
WATER_PER_PIZZA = 150 # grams
SALT_PER_PIZZA = 5 # grams
YEAST_PER_PIZZA = 2 # grams
# Toppings
TOMATO_SAUCE = "tomato sauce"
MOZZARELLA = "mozzarella"
TOPPINGS_MARGARITA_PIZZA = [TOMATO_SAUCE, MOZZARELLA]
TOPPINGS_FUNGHI_PIZZA = [TOMATO_SAUCE, MOZZARELLA, "mushrooms"]
TOPPINGS_VERDURE_GRIGLIATE_PIZZA = [
TOMATO_SAUCE,
MOZZARELLA,
"grilled vegetables"
]