Skip to content

hyosung11/todos-tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

todos-tracker

Recreate the Database

dropdb todo-lists
createdb todo-lists
psql -d todo-lists < schema.sql
psql -d todo-lists < lib/seed-data.sql

Create Hashed Values of Passwords

$ node
> const bcrypt = require("bcrypt");
undefined

> bcrypt.hash("secret", 10, (_, hash) => console.log(hash))
undefined
> $2b$10$uC3lSZqheRZja2B.jBA8q.2s3hkEviwTuRWdw36tngJBkm1i/Llo6

Features to Add

  1. Ability to edit the name of an already created todo.
  2. Ability to register a new user.

Incomplete

  1. Prepare the database for deployment to Heroku.
  2. Deploy the application to Heroku.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published