Meteor.sh is a simple Shellscript to setup a Meteor server and deploy Meteor apps to it.
Because deploying to custom servers should be as simple as everything else in Meteor.
Meteor.sh assumes that you have some kind of Ubuntu-Server and root access to it.
Move the meteor.sh
file into your project dir and change the APP_NAME
and APP_HOST
variables.
Meteor.sh will try to SSH as root to APP_HOST
.
./meteor.sh setup
This will install Node, Mongo and other dependencies for Meteor and Meteor.sh on APP_HOST
.
./meteor.sh deploy
Deploys your app to the server and starts it as a service.
Meteor.sh will detect if your project uses Meteorite and use it accordingly.