Meteor has very useful deploy command, but every hosting provider has its own way to deploy project on their servers.
What I’m looking for is a hosting compatible out-of-the box with “meteor deploy mydomain.com” command. I don’t want to spend time on “demeteorizer” for node js or other solutions, if there would be paid version of myproject.meteor.com hosting i would definitely go for it.
Another thing is a hosting price, for example node hosting costs about 25$/month for one running service, which gives 300$/year, compared to php-based hosting which is about 30$/year gives 10times cheaper hosting, but of obviously losing ability to use node.js scripts. Does it mean every project based on meteor will cost me 300$/year?
Ok micro t2 gives 120$/year which is way better than $300 and after googling what is mup - it’s a node.js package, which makes meteor deploy easier, on node.js servers. Nice combination. I remain opened for other suggestions
as of today, it’s THE package for Meteor deployment.
you wouldn’t find a better, easier or faster way to do a one line deployment
reading your response, maybe it’s important to inform you that when you run a Meteor app, you’re running a node.js server
the client deploying the app needs node.js installed as a JS hosting environment, not a web server, which one would probably already have if one develops Meteor
mup takes care of all the server logistics for you, i.e. building your meteor app, setting up node.js on the server, uploading the app to the server and running it
Hmm If mup and node.js is all I need for meteor deploy - Heroku has a free hosting for one running service, so after installing mup i should be able to deploy Meteor app on their server for free.
Also I’ll look for up to 500mb free mongodb hosting, I’m sure I have seen one somewhere.
[edit] found a mongolab.com with their free 500mb db’s, so that should be a nice combo for testing meteor prototypes.
I currently do this, I’m about to make the website live and I’m interested to see how much this 5$ droplet will handle a user load.
I use MUP but I wish there was a more pleasant way ( I guess ? ) of doing things, I miss being able to just ssh into a server and git pull from my master branch to update the site.
Just a quick heads up – if you are running your mongodb on the same droplet, you’re likely to run into issues pretty quick on the $5/mo option. I run telescope and mongo on a $10/mo droplet but the $5/mo definitely doesn’t cut it…
Even running Mongo in another container you’ll still facing issues as well. They recommended me to use a $20 one, but I think it’s too much for my app.