forked from softuni-practice-server/softuni-practice-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookbook.json
69 lines (69 loc) · 1.76 KB
/
cookbook.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"recipes": {
"01": {
"_id": "01",
"name": "Recipe 1",
"img": "assets/lasagna.jpg"
},
"02": {
"_id": "02",
"name": "Recipe 2",
"img": "assets/roast.jpg"
},
"03": {
"_id": "03",
"name": "Recipe 3",
"img": "assets/fish.jpg"
}
},
"details": {
"01": {
"_id": "01",
"name": "Recipe 1",
"img": "assets/lasagna.jpg",
"steps": [
"Prepare ingredients",
"Mix ingredients",
"Cook until done"
],
"ingredients": [
"1 tbsp Ingredient 1",
"2 cups Ingredient 2",
"500 g Ingredient 3",
"25 g Ingredient 4"
]
},
"02": {
"_id": "02",
"name": "Recipe 2",
"img": "assets/roast.jpg",
"steps": [
"Prepare ingredients",
"Mix ingredients",
"Cook until done"
],
"ingredients": [
"500 g Ingredient 1",
"3 tbsp Ingredient 2",
"2 cups Ingredient 3"
]
},
"03": {
"_id": "03",
"name": "Recipe 3",
"img": "assets/fish.jpg",
"steps": [
"Prepare ingredients",
"Mix ingredients",
"Cook until done"
],
"ingredients": [
"4 cups Ingredient 1",
"1 tbsp Ingredient 2",
"1 tbsp Ingredient 3",
"750 g Ingredient 4",
"25 g Ingredient 5"
]
}
}
}