-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample-recipes-data.js
101 lines (93 loc) · 2.35 KB
/
sample-recipes-data.js
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
'use strict';
module.exports = function getSampleData (cb){
var recipes = [
{
// customerId: "2",
// ing:[ "6", "7", "8" ],
// ingredients: [ "6", "7", "8" ],
// id: "1989",
// name: "Crock Pot Roast12",
title: "Crock Pot Roast12",
ingredients:
[
// {
// quantity: "1",
// name: " beef roast",
// type: "Meat"
// },
// {
// quantity: "1 package",
// name: "brown gravy mix",
// type: "Baking"
// },
// {
// quantity: "1 package",
// name: "dried Italian salad dressing mix",
// type: "Condiments"
// },
// {
// quantity: "1 package",
// name: "dry ranch dressing mix",
// type: "Condiments"
// },
// {
// quantity: "1/2 cup",
// name: "water",
// type: "Drinks"
// }
],
directions: [
"Place beef roast in crock pot.",
"Mix the dried mixes together in a bowl and sprinkle over the roast.",
"Pour the water around the roast.",
"Cook on low for 7-9 hours."
],
prep_time :"30min",
total_time :"3h",
recipe_yield :"8",
img: "http://img.sndimg.com/food/image/upload/w_266/v1/img/recipes/27/20/8/picVfzLZo.jpg","url": "http://www.food.com/recipe/to-die-for-crock-pot-roast-27208",
},
{
// customerId: "1",
// ing:[ "7", "8", "9" ],
// ingredients: [ "6", "7", "8" ],
// id: "1990",
// name: "Crock Pot Roast1",
title: "Crock Pot Roast1",
img: "http://img.sndimg.com/food/image/upload/w_266/v1/img/recipes/27/20/8/picVfzLZo.jpg",url: "http://www.food.com/recipe/to-die-for-crock-pot-roast-27208",
ingredients:
[
// {
// quantity: "1",
// name: " beef roast"
// },
// {
// quantity: "1 package",
// name: "brown gravy mix"
// },
// {
// quantity: "1 package",
// name: "dried Italian salad dressing mix"
// },
// {
// quantity: "1 package",
// name: "dry ranch dressing mix"
// },
// {
// quantity: "1/2 cup",
// name: "water"
// }
],
directions: [
"Place beef roast in crock pot.",
"Mix the dried mixes together in a bowl and sprinkle over the roast.",
"Pour the water around the roast.",
"Cook on low for 7-9 hours."
],
prep_time :"PT30M",
total_time :"PT3H",
recipe_yield :"8",
}
];
return recipes;
};