import { Meteor } from 'meteor/meteor'; import { PlantTypesCollection } from '/imports/api/plantTypes'; Meteor.startup(() => { process.env.MONGO_URL = "mongodb://garden:99009911@cloud.timovolkmann.de:27017/Smart_Garden"; PlantTypesCollection.insert({plantType: "BAUM"}); });