Closed anubhabsen closed 8 years ago
When you install bcrypt
, add it to package.json
, so that when others do npm install
they too will get brcrypt. Please run npm install brcypt --save
to do this
The auth isn't functioning either I believe.
You also need to edit create sample models and store the hash of the password there. (add saltRounds to config so that reuse and after sync works, try async)
{ email: 'megh@gmail.com', password: bcrypt.hashSync('password', 10), name: 'Megh'},
{ email: 'megh2@gmail.com', password: bcrypt.hashSync('password', 10), name: 'Megh2'}
Some building npm failed it seems, also auth still doesn't work
login worked for me. try deleting the db
dunno why travis is failing though
Clearing database worked. Now async?
Closed in favor of #16
This is incorrect and doesn't work