Deployed a meteor app to a Nodejitsu trial environment but failed to get it to run. Upon executing jitsu deploy
from my meteor app directory I get the following error: ReferenceError: Meteor is not defined
.
If you have gotten a meteor app up and running on Nodejitsu, please highlight the steps you took and dependencies I might be missing. I will use your suggestions and try to get my app to run. Thanks.
// package.json contents
{
"name": "test123-meteor",
"subdomain": "user123.test123-meteor",
/*
* Really not sure about this line here...
*/
"scripts": {
"start": "node client/controllers/GeneralController.js"
},
"version": "0.0.1-2",
"engines": {
"node": "0.8.x"
}
}
meteor bundle
then deploy the app with nodejitsu? – Audubon