From aaa597b7036cf188f44945f3635c6e1b5c693841 Mon Sep 17 00:00:00 2001 From: Lior Kesos Date: Tue, 27 Aug 2013 13:18:17 +0300 Subject: [PATCH] Update README.md Added explanation of how to deploy to heroku --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 449e6ebc49..f920de30bc 100644 --- a/README.md +++ b/README.md @@ -34,11 +34,21 @@ MEAN is a boilerplate that provides a nice starting point for [MongoDB](http://w When not using grunt you can use: $ node server - - Then open a browser and go to: + Then open a browser and go to: + http://localhost:3000 +## Quick Deployment +4 commands to deploy your mean app to heroku (make sure you have heroku toolbelt installed... + +git init +git add . +git commit -m "initial version" +heroku apps:create +git push heroku master + + ## Configuration All configuration is specified in the [config](config/) folder, particularly the [config.js](config/config.js) file. Here you will need to specify your application name, database name, as well as hook up any social app keys if you want integration with Twitter, Facebook, GitHub or Google.