Skip to content

rennaMAhcuS/PlagiarismChecker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Plagiarism Checker - CS293 Project 2024

A Plagiarism Checker!

Source - contains the problem statement and the required files.

Instructions to use the Dockerfile

For the first time, run

docker build . --tag copycatchers
docker run --interactive --tty --volume .:/home/Loki/plagiarism_checker --name=NP-MOS --network=bridge --hostname=Midgard copycatchers:latest

To use the docker container, run

docker start --attach --interactive NP-MOS

for a shorter command, use:

docker start -ai NP-MOS

Note

The password for the user Loki is huffman.

Instructions to add the formatter:

If not present, create a .vscode directory in the project repository, create a new file called settings.json and add the following code in it:

Important

settings.json

{
  "C_Cpp.clang_format_fallbackStyle": "{BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0, AllowShortFunctionsOnASingleLine: All, BreakBeforeBraces: Attach}"
}