Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You <em>could</em> run your deployment within the VM on just regular installed Meteor.</p> <p>Think of it like running a rails app with the built-in development server. Tough in terms of Meteor, the bundled version should be no different from a development version. The bundle you create ensures that all the necessary dependencies are bundled with it as well.</p> <p>A quote from <a href="http://docs.meteor.com/#deploying" rel="nofollow">the meteor docs</a> about <em>meteor bundle</em>:</p> <blockquote> <p>This command will generate a fully-contained Node.js application in the form of a tarball. To run this application, you need to provide Node.js 0.8 and a MongoDB server. You can then run the application by invoking node, specifying the HTTP port for the application to listen on, and the MongoDB endpoint. If you don't already have a MongoDB server, we can recommend our friends at MongoHQ.</p> <p>$ PORT=3000 MONGO_URL=mongodb://localhost:27017/myapp node bundle/main.js</p> <p>Other packages may require other environment variables (for example, the email package requires a MAIL_URL environment variable).</p> </blockquote> <p>Well i never changed the underlying database to a dedicated MongoDB server with the development version, but i think that should be possible by just setting the mentioned environment variables.</p> <p>P.S.:</p> <p>You wrote:</p> <blockquote> <p>And then setup my DNS entry to listen to port 3000...</p> </blockquote> <p>You'll have a hard time setting a port with a DNS entry...</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload