Skip to content

Latest commit

 

History

History
111 lines (72 loc) · 2.93 KB

README.md

File metadata and controls

111 lines (72 loc) · 2.93 KB

Lockr

Deployed at https://lhl-lockr.herokuapp.com/

Lockr is a password-protecting and sharing website designed with businesses in mind. Organizations who frequently share common passwords with their employees now have a way to securely generate, store and share encrypted passwords between each other for ease of use.

One major feature is the ability to monitor password security through card colour-coding depending on how frequently the password has been seen in data breaches. This will update in real time as you're creating each password!

Note: This midterm project was completed as part of the Lighthouse Labs Full-Stack Web Development Bootcamp and was the first collaborative coding experience for its group members.

Screenshots

Landing Page Passwords Password Card Organization Management Chrome Extension

LEGEND


Yellow: Infrequent data breaches.

Orange: Moderate data breaches.

Red: Severe data breaches. Very unsafe to use!


Other features include:

  • Ability to auto-categorize websites if no category is given
  • Google Chrome Extension
  • Encryption of passwords through unique masterkey generation for each organization
  • Email verification

Technologies

  • NodeJS
  • Bootstrap 4
  • JQuery
  • SASS
  • PostgreSQL

Project Setup

1. Clone

  • Clone this repo to your local machine

2. Set up your database

  • Connect to your postgres server

    psql -U vagrant -d template1
  • Create the necessary objects in your local development database that will serve as connection credentials

    CREATE ROLE labber WITH LOGIN password 'labber';
    CREATE DATABASE midterm OWNER labber;

3. Set up your credentials in .env file

  • Create the .env by using .env.example as a reference: cp .env.example .env
  • Update the .env file with your correct local information
    • username: labber
    • password: labber
    • database: midterm

4. Install dependencies and reset database

  • Install dependencies: npm i

  • Fix to binaries for sass: npm rebuild node-sass

  • Create tables and seed your database: npm run db:reset

  • Run the server: npm run local

  • Visit http://localhost:8080/

Dependencies

  • Bcrypt 3.0.6
  • Body-parser 1.19.0
  • Chalk 2.4.2
  • Cookie-session 1.4.0
  • Crypto-js 4.0.0
  • Dotenv 2.0.0
  • EJS 2.6.2
  • Express 4.17.1
  • Method-Override 3.0.0
  • Morgan 1.9.1
  • Node-SASS-Middleware 0.11.0
  • PG 6.4.2
  • PG-Native 3.0.0
  • Request 2.88.2

TEAM

// jpqy // Jimmy Peng //

// xynyx // Matthew Taylor //

// tomaswen // Tomas Wen //