-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
46 lines (46 loc) · 2.49 KB
/
Copy pathdata.js
File metadata and controls
46 lines (46 loc) · 2.49 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
db.categories.insert({
id: 'food',
name: 'Food',
blurb: 'Eat it or leave it',
image: 'http://lorempixel.com/350/200/food/1/',
items: [
{ name: 'Tasty thing', price: 200, image: 'http://lorempixel.com/260/180/food/1/' },
{ name: 'Yummy yam', price: 150, image: 'http://lorempixel.com/260/180/food/2/' },
{ name: 'Cheesy chill', price: 300, image: 'http://lorempixel.com/260/180/food/3/' },
{ name: 'Hot ha-ha\'s', price: 100, image: 'http://lorempixel.com/260/180/food/4/' },
{ name: 'Baby bribes', price: 150, image: 'http://lorempixel.com/260/180/food/5/' },
{ name: 'Zleazy Zebra Zlices', price: 150, image: 'http://lorempixel.com/260/180/food/6/' },
{ name: 'Roaring rolls', price: 50, image: 'http://lorempixel.com/260/180/food/7/' },
{ name: 'Silly sushi', price: 450, image: 'http://lorempixel.com/260/180/food/8/' },
{ name: 'Beefy burger', price: 25, image: 'http://lorempixel.com/260/180/food/9/' },
{ name: 'Bumpy bread', price: 100, image: 'http://lorempixel.com/260/180/food/10/' }
]
});
db.categories.insert({
id: 'sports',
name: 'Sportify',
blurb: 'Sporty sportsmen sporting silly sounds!',
image: 'http://lorempixel.com/350/200/sports/1/',
items: [
{ name: 'Crazy cricket', price: 120, image: 'http://lorempixel.com/260/180/sports/1/' },
{ name: 'Surfin\' sally', price: 420, image: 'http://lorempixel.com/260/180/sports/2/' },
{ name: 'Corny cyclist', price: 225, image: 'http://lorempixel.com/260/180/sports/3/' },
{ name: 'Wacky waves', price: 120, image: 'http://lorempixel.com/260/180/sports/4/' },
{ name: 'Healing helmet', price: 400, image: 'http://lorempixel.com/260/180/sports/5/' },
{ name: 'eclipse is for Java devs', price: 350, image: 'http://lorempixel.com/260/180/sports/6/' },
{ name: 'Cheeting cheetah', price: 200, image: 'http://lorempixel.com/260/180/sports/7/' },
{ name: 'Airborne athlete', price: 100, image: 'http://lorempixel.com/260/180/sports/8/' }
]
});
db.categories.insert({
id: 'animals',
name: 'Animal channel',
blurb: 'You won\'t believe it\'s true',
image: 'http://lorempixel.com/350/200/animals/1/',
items: [
{ name: 'Rhino Mocks', price: 333, image: 'http://lorempixel.com/260/180/animals/1/' },
{ name: 'Gorilla groom', price: 110, image: 'http://lorempixel.com/260/180/animals/2/' },
{ name: 'Tranquil tiger', price: 220, image: 'http://lorempixel.com/260/180/animals/3/' },
{ name: 'Gangsta giraffe', price: 220, image: 'http://lorempixel.com/260/180/animals/4/' }
]
});