-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
103 lines (102 loc) · 3.56 KB
/
db.json
File metadata and controls
103 lines (102 loc) · 3.56 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"catalog": [
{
"id": 1,
"name": "Frappe Matcha",
"price": 20000,
"image": "https://raw.githubusercontent.com/Intermussy/letsdodeez/refs/heads/main/my-images/Matcha-Frappe.png",
"type": "non-coffee",
"ice_available": true,
"hot_available": false,
"regular_size_available": true,
"large_size_available": false
},
{
"id": 2,
"name": "Ice Latte",
"price": 18000,
"image": "https://github.com/Intermussy/letsdodeez/blob/main/my-images/ice_latte.png",
"type": "non-coffee",
"ice_available": true,
"hot_available": false,
"regular_size_available": true,
"large_size_available": false
},
{
"id": 3,
"name": "Loreng",
"price": 16000,
"image": "https://raw.githubusercontent.com/Intermussy/letsdodeez/refs/heads/main/my-images/Es-Loreng.png",
"type": "non-coffee",
"ice_available": true,
"hot_available": false,
"regular_size_available": true,
"large_size_available": false
},
{
"id": 4,
"name": "Mocha",
"price": 17000,
"image": "https://github.com/Intermussy/letsdodeez/blob/main/my-images/MOCHA-ICED.png",
"type": "coffee",
"ice_available": true,
"hot_available": true,
"regular_size_available": true,
"large_size_available": false
},
{
"id": 5,
"name": "Banana Choco",
"price": 15000,
"image": "https://github.com/Intermussy/letsdodeez/blob/main/my-images/banana_choco.png",
"type": "non-coffee",
"ice_available": true,
"hot_available": false,
"regular_size_available": true,
"large_size_available": false
},
{
"id": 6,
"name": "Americano",
"price": 16000,
"image": "https://github.com/Intermussy/letsdodeez/blob/main/my-images/americano.png",
"type": "coffee",
"ice_available": true,
"hot_available": true,
"regular_size_available": true,
"large_size_available": false
},
{
"id": 7,
"name": "Capucchino",
"price": 18000,
"image": "https://github.com/Intermussy/letsdodeez/blob/main/my-images/capucchino.png",
"type": "coffee",
"ice_available": false,
"hot_available": true,
"regular_size_available": true,
"large_size_available": false
},
{
"id": 8,
"name": "Oreo MilkShake",
"price": 17000,
"image": "https://github.com/Intermussy/letsdodeez/blob/main/my-images/Oreo-Milkshake.png",
"type": "non-coffee",
"ice_available": true,
"hot_available": false,
"regular_size_available": true,
"large_size_available": false
}
],
"toppings": [
{ "id": 1, "name": "Whipped Cream", "price": 6000 },
{ "id": 2, "name": "Cocoa Powder", "price": 6000 },
{ "id": 3, "name": "Black Cookies", "price": 6000 }
],
"syrups": [
{ "id": 1, "name": "Vanilla", "price": 4000 },
{ "id": 2, "name": "Caramel", "price": 4000 },
{ "id": 3, "name": "Mango", "Price": 4000 }
]
}