Meteor apps are deployed as a Meteor bundle.
First you create a bundle and then you upload it to EvenNode either via git deployment or FTP upload. You can use the following commands to create a Meteor bundle and get it ready for deployment:
$ cd /path/to/meteor-app
$ meteor build --directory evennode --architecture os.linux.x86_64
$ mv evennode/bundle/programs/server/boot.js evennode/bundle/programs/server/app.js
Now your bundle is ready in /path/to/meteor-app/evennode/bundle/programs/server/
. It is a standard Node.js application which can be easily
deployed to EvenNode either via git deployment or FTP upload.
You may consider setting environment variables such as MONGO_URL
and ROOT_URL
if you need
to further configure your Meteor app.