From 1d3b83c2f0fb4f8094c027597a741d554b48e147 Mon Sep 17 00:00:00 2001 From: Mattia Asti Date: Sat, 17 Aug 2013 10:53:00 +0200 Subject: [PATCH] Update README.MD Getting started section link were broken. Fixed with absolute link path (https://github.com/linnovate/mean/blob/master/ ... ) --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 004b624b81..449e6ebc49 100644 --- a/README.md +++ b/README.md @@ -65,13 +65,13 @@ If you are using node instead of grunt, it is very similar: ## Getting Started We pre-included an article example, check it out: - * [The Model](app/models/article.js) - Where we define our object schema. - * [The Controller](app/controllers/articles.js) - Where we take care of our backend logic. - * [NodeJS Routes](config/routes.js) - Where we define our REST service routes. - * [AngularJs Routes](public/js/config.js) - Where we define our CRUD routes. - * [The AngularJs Service](public/js/services/articles.js) - Where we connect to our REST service. - * [The AngularJs Controller](public/js/controllers/articles.js) - Where we take care of our frontend logic. - * [The AngularJs Views Folder](public/views/articles) - Where we keep our CRUD views. + * [The Model](https://github.com/linnovate/mean/blob/master/app/models/article.js) - Where we define our object schema. + * [The Controller](https://github.com/linnovate/mean/blob/master/app/controllers/articles.js) - Where we take care of our backend logic. + * [NodeJS Routes](https://github.com/linnovate/mean/blob/master/config/routes.js) - Where we define our REST service routes. + * [AngularJs Routes](https://github.com/linnovate/mean/blob/master/public/js/config.js) - Where we define our CRUD routes. + * [The AngularJs Service](https://github.com/linnovate/mean/blob/master/public/js/services/articles.js) - Where we connect to our REST service. + * [The AngularJs Controller](https://github.com/linnovate/mean/blob/master/public/js/controllers/articles.js) - Where we take care of our frontend logic. + * [The AngularJs Views Folder](https://github.com/linnovate/mean/blob/master/public/views/articles) - Where we keep our CRUD views. ## 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) for examples.