Reputation: 760
I am new developing Meteor apps and I just set up a Telescope blog which is based in Meteor.
I want to deploy it in my own hosting (a droplet at Digital ocean) using "Meteor Up" but I dont know how to configure the "MONGO_URL" and "MAIL_URL" in the mup.json file.
Everything was set up transparently in local so I have no clue where is the DB and who is the user or the password... Any help or orientation where I should look up?
Here a snippet of my mup.json file:
{ "env": { "PORT": 80, "ROOT_URL": "", "MONGO_URL": "mongodb://:@:/App", "MAIL_URL": "smtp://postmaster%40myapp.mailgun.org:[email protected]:587/" },
Upvotes: 2
Views: 461
Reputation: 1437
Remove the mongo_url and it will use an internal mongo server. (I am sure of this)
You will need to apply for a free account at mailgun and use your api key here.
(guessing here) To get started, try eliminating that key as well and you may be fine.
{ "env": { "PORT": 80, "ROOT_URL": "" },
Upvotes: 0