mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
26 lines
618 B
JavaScript
26 lines
618 B
JavaScript
function prepopulateDatabase(){
|
|
[
|
|
{
|
|
headline: 'The first post ever, a link to Hacker News'
|
|
, url: 'http://news.ycombinator.com/'
|
|
, submitter: 'Sacha'
|
|
, submitted: new Date(2012, 7, 22).getTime()
|
|
, votes: 0
|
|
}
|
|
, {
|
|
headline: 'Another post to fill the page up a little'
|
|
, url: 'http://sachagreif.com/'
|
|
, submitter: 'Sacha'
|
|
, submitted: new Date(2012, 7, 22).getTime()
|
|
, votes: 0
|
|
}
|
|
].forEach(function(post){
|
|
Posts.insert(post);
|
|
});
|
|
}
|
|
|
|
Meteor.startup(function () {
|
|
if(Posts.find().count() === 0){
|
|
prepopulateDatabase();
|
|
}
|
|
});
|