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
-
Go to web-app root directory
$ cd RecommendationApp
-
For first time, run
install.sh
to create virtual environment of python$ chmod +x install.sh $ ./install.sh
-
To start/activate virtual environment
$ source venv/bin/activate
-
Install dependencies listed in
bower.json
andpackage.json
$ bower install & npm install
-
To run flask service
$ python run.py
Note: Flask service will run at http://localhost:5000.
-
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.
-
To stop/deactivate virtual environment
$ deactivate