9 lines
285 B
JavaScript
9 lines
285 B
JavaScript
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"});
|
|
});
|