Stateless, token-based API. Passwords are hashed with bcrypt.
Login issues a JWT. Middleware verifies the token.
/auth/signup
/auth/login
/notes "GET" To get all notes from a userId, userId pulled from auth
/notes "POST"
/notes/:id "DELETE"
login/signup are public, everything else is protected
Docker-compose up, then navigate to http://localhost:3000
Need to supply a file that creates the PostgreSQL DB, right now it is just local on my machine/docker


