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/
- Lucy Follansbee (https://github.com/lucyf44)
- Andy Knolla (https://github.com/andyknolla)
- Christopher Comella (https://github.com/chrisco)
- Evan McClaugherty (https://github.com/evan-mcclaugherty)
- Zach Zimmerman (https://github.com/ZachDZimmerman)
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:
- Create the database:
$ createdb q2db
- Clone and install the app:
$ git clone [email protected]:LACEZ/q2-project.git
$ cd q2-project
$ npm install
- Create the database tables:
$ psql q2db < ./db/resources/Q2_create.sql
- Seed the database tables:
$ knex seed:run
- Start the server:
$ npm start
- Visit: http://localhost:3000