Skip to content

:octocat:🏆 A webapp to promote positive GitHub behavior through friendly competition

Notifications You must be signed in to change notification settings

alexnitta/GitAchieve

 
 

Repository files navigation

GitAchieve Build Status Dependency Status

A webapp to promote positive GitHub behavior through friendly competition.

Demo

Team

Table of Contents

  1. How to get started
  2. Architecture
  3. Technologies

How to get started

  1. Clone down the repo git clone https://github.com/Groovy-Narwhal/GitAchieve.git
  2. Change directory into GitAchieve cd GitAchieve/
  3. Install dependencies npm install
  4. Set up your GitHub oAuth app, config files, database, and
  5. Run the server npm run serve
  6. Open your browser to localhost:8000

Architecture

API Server Endpoints

Endpoint Request Type Description JSON Required Data Returned
/api/v1/users GET Get list of all users none Array of users
/api/v1/users POST Add a user GitHub username, id and email Added user
/api/v1/users/:id GET Get a user by id none User
/api/v1/users/:id PATCH Update a user manually Object of updated properties Updated user
/api/v1/users/:id PATCH Update a user automatically with current GitHub info none Updated user
/api/v1/users/:id DELETE Delete a user by id none Deleted user
/api/v1/users/:id/repo GET Get a single repo by id for a user Header for repoid Array containing repo
/api/v1/users/:id/repos GET Get a user's repos none Array of repos
/api/v1/users/:id/repos POST Add a repo for a user Object containing 'profile', an object of all updated values Added repo, added join
/api/v1/users/:id/repos PATCH Update a user's repos from GitHub by user id none Array of repos
/api/v1/users/:id/repos/branches GET Get a repo's branches by user id and repo id Header for repoid Array of branches
/api/v1/users/:id/repos/branches PATCH Update branches for a user's repos from GitHub none Array of branches updated
/api/v1/users/:id/stats GET Get stats for a user by org and repo Headers for orgid and repoid Array containing stat object
/api/v1/users/:id/stats PATCH Update stats for a user from GitHub none Array of stats updated - each has user_id, org_id and repo_id
/api/v1/users/:id/commits GET Get commits for a user by repo Header for repoid Array containing commits, sorted by most recent first
/api/v1/users/:id/commits PATCH Update commits for a user from GitHub none Array of commits updated
/api/v1/users/:id/commits/start GET Get commits for a user by repo from start date Header for repoid and startdate Array of objects containing date and commits for each day
/api/v1/users/:id/friends GET Get a user's friends none Array of friends
/api/v1/users/:id/friends POST Primary user requests friendship with secondary user primary user id, secondary user id, username and email Array containing join row in users_users
/api/v1/users/:id/friends PATCH Confirm a friend request or remove a friendship remove:true to remove friendship Array containing join row in users_users
/api/v1/users/:id/receivedmatches GET Retrieve all friendships in which you were requested to compete none Array of users_users
/api/v1/users/:id/requestedmatches GET Retrieve all friendships in which you requested to compete with someone none Array of users_users
/api/v1/users/:id/successmatches GET Retrieve all friendships that have been accepted in which you sent the request none Array of users_users
/api/v1/users/:id/successmatches2 GET Retrieve all friendships that have been accepted in which you were sent the request none Array of users_users
/api/v1/users/:id/pastcompetitions GET Retrieve all competitions that have passed none Array of users_users
/api/v1/orgs/:id/orgs PATCH Update organizations for user none Array of organizations
/api/v1/orgs/:id/pullrequests PATCH Update pull requests for user none Array of pull request data for user
/api/v1/orgs/:username/orgs GET Get all of users organizations none Array of organizations data
/api/v1/orgs/:username/pullrequests GET Get all of users pull requests none Array of pullrequest data

Client Side Routes

Route Description
/ Index route displaying search for opponent, achievement chart, competitor challenges
/signin Login page with logo, tagline, and GitHub login button
/about About page with info on what GitAchieve is and the team
/search-results List of users search results
/:username/profile Users profile page
/:username/achievements Users achievement profile
/compete/choose-repo/:username Dropdown for first user to select repo and start time of competition
/compete/choose-second-repo/:id Dropdown for second user to select repo

System Architecture

System Architecture

Database Schema

For full details, see this spreadsheet

Schema

Technologies

Front End

  • React
  • Redux
  • D3.js

Back End

  • NodeJS
  • ExpressJS
  • Postgres

Testing

Deployment

  • AWS EC2
  • Travis CI

About

:octocat:🏆 A webapp to promote positive GitHub behavior through friendly competition

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 89.5%
  • CSS 9.8%
  • HTML 0.7%