adds 2025 materials
This commit is contained in:
commit
e85b3b21ca
23 changed files with 378 additions and 0 deletions
17
src/italianfood/ingredients_and_toppings.py
Normal file
17
src/italianfood/ingredients_and_toppings.py
Normal 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"
|
||||
]
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue