-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipes.json
46 lines (46 loc) · 1.4 KB
/
recipes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"recipes": [
{
"id": 1,
"hero-img": "path/to/file",
"name": "Pancakes",
"directions": "Combine dry ingredients. Stir in egg, oil and enough milk for batter to pour and mix lightly to blend. Cook pancake in a well greased pan/griddle. Makes 2.",
"ingredients": [
{
"ingredient": "flour",
"amount": 1,
"measure": "cup"
},
{
"ingredient": "sugar",
"amount": 2,
"measure": "tbsp"
},
{
"ingredient": "baking soda",
"amount": 2,
"measure": "tsp"
},
{
"ingredient": "salt",
"amount": 0.5,
"measure": "tsp"
},
{
"ingredient": "egg (large)",
"amount": 1,
"measure": "count"
},
{
"ingredient": "vegetable oil",
"amount": 2,
"measure": "tbsp"
},
{
"ingredient": "milk",
"misc": "just enough to make pourable"
}
]
}
]
}