Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.39 KB

README.MD

File metadata and controls

44 lines (33 loc) · 1.39 KB

Happy Tracker

Screenshot

Happy Tracker is an app to help you find happy hours in Denver.

Registered users can Add and Favorite happy hours.

Find it live on the web here:
https://happytracker.herokuapp.com/

Created By

Key Technologies Used

Run It Locally

Assuming you have the required software on you computer and have it configured properly, you should be able to run the app on your machine with the following steps:

  1. Create the database:
    • $ createdb q2db
  2. Clone and install the app:
  3. Create the database tables:
    • $ psql q2db < ./db/resources/Q2_create.sql
  4. Seed the database tables:
    • $ knex seed:run
  5. Start the server:
    • $ npm start
  6. Visit: http://localhost:3000