startup.js 428 B

123456789101112131415161718
  1. if (Meteor.isServer) {
  2. Meteor.startup(function () {
  3. if (Images.find().count() === 0) {
  4. Images.insert({
  5. "img_src": "laptops.jpg",
  6. "img_alt": "some laptops on a table"
  7. });
  8. Images.insert({
  9. "img_src": "bass.jpg",
  10. "img_alt": "a bass player"
  11. });
  12. Images.insert({
  13. "img_src": "beard.jpg",
  14. "img_alt": "some musicians with beards"
  15. });
  16. }
  17. });
  18. }