updated README to show initial seeding tasks, and fixed a small typo

This commit is contained in:
Nick Gordon 2013-11-09 08:45:22 -08:00
parent 5d6b6c1f2a
commit d802c502b0
2 changed files with 7 additions and 2 deletions

View file

@ -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
@ -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

View file

@ -30,5 +30,5 @@ async.waterfall([
}
],function(err){
if (err) throw err;
console.log("Dont initializing database");
})
console.log("Done initializing database");
})