2012-08-22 21:27:22 -04:00
|
|
|
function prepopulateDatabase(){
|
|
|
|
[
|
|
|
|
{
|
|
|
|
headline: 'The first post ever, a link to Hacker News'
|
|
|
|
, url: 'http://news.ycombinator.com/'
|
|
|
|
, submitter: 'Sacha'
|
2012-08-22 22:50:04 -04:00
|
|
|
, submitted: new Date(2012, 7, 22).getTime()
|
|
|
|
, votes: 0
|
2012-08-31 19:41:54 -04:00
|
|
|
, comments: 0
|
2012-08-22 21:27:22 -04:00
|
|
|
}
|
|
|
|
, {
|
|
|
|
headline: 'Another post to fill the page up a little'
|
|
|
|
, url: 'http://sachagreif.com/'
|
|
|
|
, submitter: 'Sacha'
|
2012-08-22 22:50:04 -04:00
|
|
|
, submitted: new Date(2012, 7, 22).getTime()
|
|
|
|
, votes: 0
|
2012-08-31 19:41:54 -04:00
|
|
|
, comments: 0
|
2012-08-22 21:27:22 -04:00
|
|
|
}
|
|
|
|
].forEach(function(post){
|
|
|
|
Posts.insert(post);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Meteor.startup(function () {
|
|
|
|
if(Posts.find().count() === 0){
|
|
|
|
prepopulateDatabase();
|
|
|
|
}
|
|
|
|
});
|