Commit b7728aac41d7bfd939e835dd15f167f4d8707b67
1 parent
a6c118bdfb
Exists in
master
README.md edited online with Bitbucket
Showing
1 changed file
with
17 additions
and
1 deletions
Show diff stats
README.md
... | ... | @@ -48,13 +48,29 @@ cd into the `ydapp` folder |
48 | 48 | ``` |
49 | 49 | $ cd ydapp/ |
50 | 50 | ``` |
51 | + | |
52 | +to install all the dependencies, run below command | |
53 | + | |
51 | 54 | ``` |
52 | -$ npm install | |
55 | +$ meteor npm install | |
53 | 56 | ``` |
54 | 57 | |
58 | +To start the app | |
59 | + | |
55 | 60 | ``` |
56 | 61 | $ ./run/app |
57 | 62 | ``` |
63 | +above command won't run for windows. | |
64 | +For windows only, run below command to start the app | |
65 | +``` | |
66 | +meteor --settings settings-development.json | |
67 | +``` | |
68 | + | |
69 | +go to below URL to check the running app | |
70 | +``` | |
71 | +localhost:3000 | |
72 | +``` | |
73 | + | |
58 | 74 | ##Reset development environment |
59 | 75 | To reset Meteor fixtures and clean the development environment. |
60 | 76 | ``` | ... | ... |