-
Notifications
You must be signed in to change notification settings - Fork 1
/
db.json
72 lines (72 loc) · 1.18 KB
/
db.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
70
71
72
{
"ingredients": [
{
"id": 1,
"name": "Coffee",
"unit": "g",
"amount": 10
},
{
"id": 2,
"name": "Water",
"unit": "ml",
"amount": 10
},
{
"id": 3,
"name": "Milk",
"unit": "ml",
"amount": 10
},
{
"id": 4,
"name": "Cocoa",
"unit": "g",
"amount": 10
},
{
"id": 5,
"name": "Sugar",
"unit": "g",
"amount": 10
}
],
"recipes": [
{
"name": "Americano",
"coffeeAmount": 5,
"waterAmount": 10,
"milkAmount": 0,
"cocoaAmount": 0,
"sugarAmount": 0,
"id": 1
},
{
"name": "Espresso",
"coffeeAmount": 10,
"waterAmount": 10,
"milkAmount": 0,
"cocoaAmount": 0,
"sugarAmount": 0,
"id": 2
},
{
"name": "Latte Macchiato",
"coffeeAmount": 5,
"waterAmount": 10,
"milkAmount": 5,
"cocoaAmount": 0,
"sugarAmount": 5,
"id": 3
},
{
"name": "Hot Chocolate",
"coffeeAmount": 0,
"waterAmount": 0,
"milkAmount": 10,
"cocoaAmount": 10,
"sugarAmount": 10,
"id": 4
}
]
}