From 597b8e116d8bcd8ecfe460d5db92073c63ebc8d5 Mon Sep 17 00:00:00 2001 From: Sashko Stubailo Date: Mon, 6 Oct 2014 19:31:20 -0700 Subject: [PATCH] Improve "deploying" section of docs --- docs/client/concepts.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/client/concepts.html b/docs/client/concepts.html index b9b23f1b58..6c926099a5 100644 --- a/docs/client/concepts.html +++ b/docs/client/concepts.html @@ -732,12 +732,12 @@ more information, see [meteor deploy](#meteordeploy).

Running on your own infrastructure

-You can also run your application on your own infrastructure, or any -other hosting provider like Heroku. +You can also run your application on your own infrastructure or any +other hosting provider, like Heroku. To get started, run - $ meteor bundle myapp.tgz + $ meteor build my_directory 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.10 and a @@ -748,12 +748,12 @@ 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 [Compose](http://compose.io). - $ cd bundle + $ cd my_directory $ (cd programs/server && npm install) $ PORT=3000 MONGO_URL=mongodb://localhost:27017/myapp node main.js -Other packages may require other environment variables (for example, the `email` -package requires a `MAIL_URL` environment variable). +Some packages might require other environment variables. For example, +the `email` package requires a `MAIL_URL` environment variable. {{/markdown}}