-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
55 lines (55 loc) · 1.74 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
{
"drinks": [
{
"id": "martini",
"name": "Martini",
"description": "An ice-cold, refreshing classic.",
"recipe": "Mix 3 parts vodka & 1 part dry vermouth.",
"serve": "Serve very cold, straight up."
},
{
"id": "negroni",
"name": "Negroni",
"description": "A nice drink for a late night conversation.",
"recipe": "Mix equal parts of gin, Campari, and sweet vermouth.",
"serve": "Serve cold, either on the rocks or straight up."
},
{
"id": "gin-and-tonic",
"name": "Gin and Tonic",
"description": "Like regular tonic, but with gin.",
"recipe": "Mix 2 parts gin & 1 part tonic water.",
"serve": "Serve in a tall glass over ice, garnished with a lime wedge."
},
{
"id": "diet-coke",
"name": "Diet Coke",
"description": "Crisp!",
"recipe": "Open can.",
"serve": "Immediately."
}
],
"snacks": [
{
"id": "nachos",
"name": "Nachos",
"description": "An American classic!",
"recipe": "Cover expensive, organic tortilla chips with Cheez Whiz.",
"serve": "Serve in a hand-thrown ceramic bowl, garnished with canned black olives"
},
{
"id": "hummus",
"name": "Hummus",
"description": "Sure to impress your vegan friends!",
"recipe": "Purchase one container of hummus.",
"serve": "Place unceremoniously on the table, along with pita bread."
},
{
"id": "arugula-and-walnut-salad",
"name": "Arugula and Walnut Salad",
"description": "Tart and delicious.",
"recipe": "Mix arugula, toasted walnuts, and thinly-sliced Parmesan cheese. Dress with lemon and olive oil.",
"serve": "Place on tiny, precious little plates."
}
]
}