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