From 65c7e73abecd9c64a9aa471378f585b0afa86cfb Mon Sep 17 00:00:00 2001 From: deepak kumar Date: Tue, 21 Mar 2017 09:36:56 +0000 Subject: [PATCH] README.md edited online with Bitbucket --- README.md | 69 +++++++++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 54 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 7ec3701..0778a5f 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,56 @@ -# The Meteor Chef - Base -A starting point for Meteor apps. +##File Structure +``` - - - - - - - - - - - -
Base Versionv4.11.1
Meteor Versionv1.4.2.3
+ |--app/ + | |--client + | | |--styles/ //-- All the styles + | | | |--components/ //-- Depreciated LESS styles + | | | |--layouts/ //-- SCSS styles + | | | |--lib/ //-- Styling variables + | | | |--mixins/ //-- All the mixins + | | | |--vendor/ //-- Fonts and icons + | | | |--views/ //-- SCSS styles + | | |--main.html //-- Main + | | |--main.js //-- Import main + | |--imports/ + | | |--client/ //-- Application logic + | | | |--app/ //-- App routes and some common components + | | | |--views/ //-- All the view part + | | | | |--app/ + | | | | |--etc/ //-- some sample files + | | | | |--invalidOrg/ //--View when someone enter a non registered subdomain + | | | | |--nonOrg/ //--View for main site + | | | | |--Org/ //--Organisation specific vies + | | |--collections/ //-- Application collections + | | |--server/ //-- Server side processing and integrations + | |--private/ + | | |--fixtures/ //-- Application fixtures + | |--public/ + | | |--files/ //-- Raw fonts and SVG assets + | |--server/ //-- Main JS + | |--tests/ //-- For running tests + | |--package.json //-- Node.js dependencies + | + | + |--run/ //-- Handy shell scripts +``` -[Read the Documentation](http://themeteorchef.com/base) +##Install application +``` +$ cd meteor-react/ +``` +``` +$ npm install +``` + +``` +$ ./run/app +``` +##Reset development environment +To reset Meteor fixtures and clean the development environment. +``` +$ ./run/reset_meteor +``` + +##Production Deployment +//-- To do \ No newline at end of file -- 2.0.0