dropdb todo-lists
createdb todo-lists
psql -d todo-lists < schema.sql
psql -d todo-lists < lib/seed-data.sql
$ node
> const bcrypt = require("bcrypt");
undefined
> bcrypt.hash("secret", 10, (_, hash) => console.log(hash))
undefined
> $2b$10$uC3lSZqheRZja2B.jBA8q.2s3hkEviwTuRWdw36tngJBkm1i/Llo6
- Ability to edit the name of an already created todo.
- Ability to register a new user.
- Prepare the database for deployment to Heroku.
- Deploy the application to Heroku.