Commit 65c7e73abecd9c64a9aa471378f585b0afa86cfb
1 parent
6894fd7e2b
Exists in
master
README.md edited online with Bitbucket
Showing
1 changed file
with
54 additions
and
15 deletions
Show diff stats
README.md
1 | -# The Meteor Chef - Base | |
2 | -A starting point for Meteor apps. | |
1 | +##File Structure | |
2 | +``` | |
3 | 3 | |
4 | -<table> | |
5 | - <tbody> | |
6 | - <tr> | |
7 | - <th>Base Version</th> | |
8 | - <td>v4.11.1</td> | |
9 | - </tr> | |
10 | - <tr> | |
11 | - <th>Meteor Version</th> | |
12 | - <td>v1.4.2.3</td> | |
13 | - </tr> | |
14 | - </tbody> | |
15 | -</table> | |
4 | + |--app/ | |
5 | + | |--client | |
6 | + | | |--styles/ //-- All the styles | |
7 | + | | | |--components/ //-- Depreciated LESS styles | |
8 | + | | | |--layouts/ //-- SCSS styles | |
9 | + | | | |--lib/ //-- Styling variables | |
10 | + | | | |--mixins/ //-- All the mixins | |
11 | + | | | |--vendor/ //-- Fonts and icons | |
12 | + | | | |--views/ //-- SCSS styles | |
13 | + | | |--main.html //-- Main | |
14 | + | | |--main.js //-- Import main | |
15 | + | |--imports/ | |
16 | + | | |--client/ //-- Application logic | |
17 | + | | | |--app/ //-- App routes and some common components | |
18 | + | | | |--views/ //-- All the view part | |
19 | + | | | | |--app/ | |
20 | + | | | | |--etc/ //-- some sample files | |
21 | + | | | | |--invalidOrg/ //--View when someone enter a non registered subdomain | |
22 | + | | | | |--nonOrg/ //--View for main site | |
23 | + | | | | |--Org/ //--Organisation specific vies | |
24 | + | | |--collections/ //-- Application collections | |
25 | + | | |--server/ //-- Server side processing and integrations | |
26 | + | |--private/ | |
27 | + | | |--fixtures/ //-- Application fixtures | |
28 | + | |--public/ | |
29 | + | | |--files/ //-- Raw fonts and SVG assets | |
30 | + | |--server/ //-- Main JS | |
31 | + | |--tests/ //-- For running tests | |
32 | + | |--package.json //-- Node.js dependencies | |
33 | + | | |
34 | + | | |
35 | + |--run/ //-- Handy shell scripts | |
36 | +``` | |
16 | 37 | |
17 | -[Read the Documentation](http://themeteorchef.com/base) | |
38 | +##Install application | |
39 | +``` | |
40 | +$ cd meteor-react/ | |
41 | +``` | |
42 | +``` | |
43 | +$ npm install | |
44 | +``` | |
45 | + | |
46 | +``` | |
47 | +$ ./run/app | |
48 | +``` | |
49 | +##Reset development environment | |
50 | +To reset Meteor fixtures and clean the development environment. | |
51 | +``` | |
52 | +$ ./run/reset_meteor | |
53 | +``` | |
54 | + | |
55 | +##Production Deployment | |
56 | +//-- To do | |
18 | 57 | \ No newline at end of file | ... | ... |