I am still learning about Meteor, and have been playing around with it while reading DiscoverMeteor.com
I am having an issue that I can't figure out:
I can't seem to get Meteor to stay running after I exit out of my remote Linux terminal session (testing it on digitalocean) and making a file change or waiting long enough. I've attempted to use nohup, disown, and the "&" option, but it looks like the Meteor app will run for a while, but as soon as I make an edit to a file in the app (for instance the main app.js file) and upload it via sftp, instead of doing a live update of the page as it would normally, it doesn't load anymore, causing me to log back in trough SSH and launching the app again.
It seems also, that if I simply wait long enough (overnight), it does the same thing. I've tried the following commands from within the Meteor App directory:
1.
meteor --port 80 &
disown %1
2.
nohup meteor --port 80
Lastly, can I use a script or something to have the meteor app I want running to load after a reboot?
I am looking for an elegant solution, but anything will do at this point.
Many thanks.