Skip to content

Github Data Analysis and Contribution Recommender System

Notifications You must be signed in to change notification settings

rishy/Git-a-rec

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5baf7c5 · Jun 2, 2015

History

75 Commits
May 3, 2015
May 3, 2015
Jun 2, 2015
May 3, 2015
Jun 2, 2015
Jun 2, 2015
Jun 2, 2015
May 4, 2015
Jun 2, 2015
May 11, 2015
Jun 2, 2015

Repository files navigation

Git-a-rec

Git-a-rec is a Data Analytics system, which uses huge amount of open Github Data to find deep patterns among Github Repos and Users Data.

##Installation

  1. Go to web-app root directory

        $ cd RecommendationApp
  2. For first time, run install.sh to create virtual environment of python

        $ chmod +x install.sh
        $ ./install.sh 
  3. To start/activate virtual environment

        $ source venv/bin/activate
  4. Install dependencies listed in bower.json and package.json

        $ bower install & npm install
  5. To run flask service

        $ python run.py

    Note: Flask service will run at http://localhost:5000.

  6. To run client-side AngularJS application

        $ grunt server

    Note: The Grunt server will run at http://localhost:8080.The Grunt server supports hot reloading of client-side HTML/CSS/Javascript file changes.

  7. To stop/deactivate virtual environment

        $ deactivate