Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rennamahcus/plagiarismchecker

A Plagiarism Checker!
https://github.com/rennamahcus/plagiarismchecker

Last synced: about 2 months ago
JSON representation

A Plagiarism Checker!

Awesome Lists containing this project

README

        

# Plagiarism Checker - CS293 Project 2024

A Plagiarism Checker!

[**Source**](https://github.com/SuperSat001/CS293-Project-2024) - contains the problem statement and the required files.

## Instructions to use the `Dockerfile`

For the first time, run

```sh
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

```sh
docker start --attach --interactive NP-MOS
```

for a shorter command, use:

```sh
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`
>
> ```json
> {
> "C_Cpp.clang_format_fallbackStyle": "{BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0, AllowShortFunctionsOnASingleLine: All, BreakBeforeBraces: Attach}"
> }
> ```