Skip to content

Commit

Permalink
updated README to show initial seeding tasks, and fixed a small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
snicker committed Nov 9, 2013
1 parent 5d6b6c1 commit d802c50
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Before starting make sure to have [MongoDB](http://www.mongodb.org/), [NodeJS an
`npm install`
1. Create a config file from the example one:
`cp config.json.example config.json`
1. Ensure that Mongo is running and seed the database with initial settings by running:
`node .\src\seed.js`.

## Windows Environment Install

Expand Down Expand Up @@ -62,6 +64,9 @@ Ignore this error and proceed with the following:
'bower install -f'
1. Create a config file from the example one:
`copy config.json.example config.json`
1. Ensure that Mongo is running and seed the database with initial settings by r
unning:
`node ./src/seed.js`.
# Run HabitRPG
Expand Down
4 changes: 2 additions & 2 deletions src/seed.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ async.waterfall([
}
],function(err){
if (err) throw err;
console.log("Dont initializing database");
})
console.log("Done initializing database");
})

0 comments on commit d802c50

Please sign in to comment.