Remove local change of env variables.

This commit is contained in:
Andrés Uribe Stengel 2020-07-09 14:26:01 +02:00
parent 7109a48130
commit 9778434e11
2 changed files with 2 additions and 3 deletions

View File

@ -1,3 +1,3 @@
import { Mongo } from 'meteor/mongo';
import { Meteor } from 'meteor/meteor';
export const PlantTypesCollection = new Mongo.Collection('plantTypes');
export const PlantTypesCollection = new Meteor.Collection('plantTypes');

View File

@ -2,7 +2,6 @@ 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"});
});