Skip to content

GitHub Plagiarism Detector - An automation tool using React, Flask and Postgresql

License

Notifications You must be signed in to change notification settings

ssp4all/GitHub-Plagiarism-Detector

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Plagarism Detector

Hits

This is an automation tool for detecting plagarism in the code assignments.

Note: This project uses MOSS software by Standford Univerity

Demo

demo

demo

Stats

Tech Stack

  • Flask
  • React
  • Postgresql

Execution

  • cd to root dir ie. GPD

  • npm run start

  • cd to GPD/server

  • flask run

  • Start postgresql server using pg_ctl -D /usr/local/var/postgres start

Installation

> Back End

pip install Flask

cd server

pip install -r requirements.txt

> Front End

Install Npm, React

> Postgres

For Mac, postgresql DB installation

Get homebrew

brew update then brew doctor

brew install postgresql

start server using pg_ctl -D /usr/local/var/postgres start

Enter psql postgres to get started

Some handy command for Postgres

  • CREATE DATABASE gpd_dev;
  • Dump .pgsql into DB psql gpd_dev < /Users/spawar2/Desktop/GitHub-Plagiarism-Detector/server/db.pgsql

Useful commands in psql command line

  • to use DB \c gpd_dev
  • To list all DBS \list
  • To list all Tables use \dt
  • To Empty table truncate [table_name] cascade; #if foreign keys are there

About

GitHub Plagiarism Detector - An automation tool using React, Flask and Postgresql

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 46.4%
  • Python 42.6%
  • CSS 8.2%
  • HTML 2.7%
  • Shell 0.1%