mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
updated README to show initial seeding tasks, and fixed a small typo
This commit is contained in:
parent
5d6b6c1f2a
commit
d802c502b0
2 changed files with 7 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -30,5 +30,5 @@ async.waterfall([
|
|||
}
|
||||
],function(err){
|
||||
if (err) throw err;
|
||||
console.log("Dont initializing database");
|
||||
})
|
||||
console.log("Done initializing database");
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue