I was thinking whether we can deploy Meteor.js app doing this:
curl https://install.meteor.com | /bin/sh
meteor create myApp
cd myApp
- FTP app files into
myApp
directory meteor
I was thinking whether we can deploy Meteor.js app doing this:
curl https://install.meteor.com | /bin/sh
meteor create myApp
cd myApp
myApp
directorymeteor
I assume you are trying to deploy to your own server. Therefore your need to create the bundle which you can them FTP and expand in your server/directory as follows:
Note: If the machine you developed the application is different than the machine you are deploying to, you will need to rebuild the native package. To do this, enter the bundle/programs/server/node_modules directory. cd bundle/programs/server/node_modules Once there remove the fibers directory rm -r fibers Rebuild fibers using npm: npm install fibers This will install the latest fibers version, specific to the platform you are deploying to.
Best regards, Vince