Skip to content

freeheeling/penpal

 
 

Repository files navigation

PenPal

Click to open the PenPal app hosted on Heroku

Description

PenPal is an interactive Rails web application built from conception to completion that authenticates with a third-party service (Google), consumes multiple APIs (Spotify and Pexel), and provides a solution to an identified problem.

PenPal is intended to support users in times when they are feeling down, unmotivated or alone. Interacting with the app, users are asked to complete a personal survey, after which they can record their current mood and receive a catered suggestion based on their stated preferences. Identified close friends are sent an introductory email notifying them that the user may occasionally connect with them. Suggestions from PenPal include a specific activity, song, image, a friend's contact information, or place to journal. Eventually, the app will have the ability to track moods and activities to help users learn more about themselves.

Purpose

Object Oriented Programing principles, Restful Routing, Test Driven Development, Behavior Driven Development, Authenticated API calls, OAuth process

Welcome Page Demo

PenPal Welcome Page Demo

Installation

  1. Clone down this and the micro-service repo into a directory of your choice
  $ git clone https://github.com/Not-Zorro/penpal
  $ git clone https://github.com/Not-Zorro/penpal_api
  1. Change into the following directory
  $ cd penpal_api
  1. Install the gem packages
  $ bundle install
  1. Change into the other directory
  $ cd penpal
  1. Install the gem packages
  $ bundle install
  1. Set up the database
  $ rake db:{create,migrate,seed}
  1. Run redis-server
  $ redis-cli
  1. In a separate terminal tab, run the sidekiq process
  $ bundle exec sidekiq
  1. In a third terminal tab, launch your local server
  $ rails s
  1. Finally, visit http://localhost:3000 in your web browser

Requirements

Environment variables and required API keys/tokens:

  • Google Token defined as ENV['GOOGLE_TEST_TOKEN']
  • Google client_id defined as ENV['GOOGLE_CLIENT_ID']
  • Google client_secret defined as ENV['GOOGLE_CLIENT_SECRET']
  • Spotify client_id defined as ENV['SPOTIFY_CLIENT_ID']
  • Spotify client_secret defined as ENV['SPOTIFY_CLIENT_SECRET']
  • Spotify Access Token defined as ENV['SPOTIFY_ACCESS_TOKEN']
  • Spotify Refresh Token defined as ENV['SPOTIFY_REFRESH']
  • Pexel API key defined as ENV['PEXEL_API_KEY'] within penpal_api
  • Whitelisted Spotify Redirect URI defined as ENV['SPOTIFY_REDIRECT_URI']
  • Penpal micro-service URL defined as ENV['PENPAL_URL']

Database / Schema Diagram

Screen Shot 2020-01-09 at 8 30 49 PM

Testing

Testing Technologies

Running Tests

Run the full test suite:

$ bundle exec rspec

Run a single test file:

$ bundle exec rspec <path-to-file>

Versions

  • Ruby 2.5.0
  • Rails 5.2.4

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 68.9%
  • HTML 27.9%
  • JavaScript 1.6%
  • CSS 1.3%
  • AppleScript 0.3%