From 29fafa235ea8eae8da6591a2485622c598137839 Mon Sep 17 00:00:00 2001 From: Lior Kesos Date: Wed, 26 Jun 2013 23:43:11 +0300 Subject: [PATCH 1/5] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index b5991ef9..47415a6c 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ We mainly try to take care of the connection points between existing popular fra * Node.js - Download and Install [Node.js](http://www.nodejs.org/). * MongoDB - Download and Install [MongoDB](http://www.mongodb.org/) - Make sure it's running on the default port(27017). +## MEAN Modules +* Mean presents a growing eco-system of MEAN based modules in the npm repository, To write (and contribute) your own MEAN based module checkout [mean-logger](https://npmjs.org/package/mean-logger) + + ## Additional Packages * Express - Defined as npm module in the [Package.json](package.json) file. * Mongoose - Defined as npm module in the [Package.json](package.json) file. From a42988f3cab07880f5d05fe2c3535e9e1ea79ae7 Mon Sep 17 00:00:00 2001 From: Lior Kesos Date: Wed, 26 Jun 2013 23:49:57 +0300 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 47415a6c..bdf72685 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ We mainly try to take care of the connection points between existing popular fra * MongoDB - Download and Install [MongoDB](http://www.mongodb.org/) - Make sure it's running on the default port(27017). ## MEAN Modules -* Mean presents a growing eco-system of MEAN based modules in the npm repository, To write (and contribute) your own MEAN based module checkout [mean-logger](https://npmjs.org/package/mean-logger) +* Mean presents a growing eco-system of MEAN based modules in the npm repository, To write (and contribute) your own MEAN based module checkout [mean-logger](https://npmjs.org/package/mean-logger) for examples. ## Additional Packages From 928f40c961b01789014fe2ea69163040135f1fd5 Mon Sep 17 00:00:00 2001 From: Lior Kesos Date: Fri, 28 Jun 2013 12:46:47 +0300 Subject: [PATCH 3/5] updated readme to make sure that people understand to open a browser on port 3000 in the end of the install, fixes #5 --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bdf72685..8ba2f7e3 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,11 @@ See the [config](config/) folder and especially the [config.js](config/config.js Start the server: $ node server - + + Then open a browser and go to + + $ http://localhost:3000 + ## The Future We are currently working on a extendable module system to make it more like a framework with support for modern web development requirements. From 2b1020fe3ab2414bac8b626c56cc489e42e1d4a8 Mon Sep 17 00:00:00 2001 From: Lior Kesos Date: Mon, 1 Jul 2013 01:18:05 +0300 Subject: [PATCH 4/5] Fixed ""Implicit textOnly for `script` and `style` is deprecated."" warning - see http://www.kaspertidemann.com/how-to-fix-the-implicit-textonly-for-script-and-style-is-deprecated-error-in-jade/ --- app/views/index.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/index.jade b/app/views/index.jade index 6f2f3668..c1218989 100755 --- a/app/views/index.jade +++ b/app/views/index.jade @@ -2,5 +2,5 @@ extends layouts/default block content section(data-ng-view) - script(type="text/javascript") + script(type="text/javascript"). window.user = !{user}; From 1ad977726bfd5f5d87af8564ee78fd72a65369d3 Mon Sep 17 00:00:00 2001 From: Amos Haviv Date: Wed, 3 Jul 2013 18:35:24 +0300 Subject: [PATCH 5/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8ba2f7e3..c5321690 100644 --- a/README.md +++ b/README.md @@ -34,9 +34,9 @@ See the [config](config/) folder and especially the [config.js](config/config.js $ node server - Then open a browser and go to + Then open a browser and go to: - $ http://localhost:3000 + http://localhost:3000 ## The Future We are currently working on a extendable module system to make it more like a framework with support for modern web development requirements.