Skip to content

Commit

Permalink
Basic Readme (#59)
Browse files Browse the repository at this point in the history
* Basic Readme
* Create LICENSE
* Update README to include license
  • Loading branch information
vbsinha authored and vishwakftw committed May 3, 2019
1 parent ab4983e commit cde1c74
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 1 deletion.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 Vaibhav Sinha, Prateek Kumar, Vishwak Srinivasan

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
31 changes: 30 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,33 @@
[![CircleCI](https://circleci.com/gh/vbsinha/pdp-judge.svg?style=svg&circle-token=779cf1772a65883845be7ded61285e17a63141de)](https://circleci.com/gh/vbsinha/pdp-judge)

---
More information coming soon!
This is an implementation of an online judge.
The portal can be used for conducting programming contests as well as managing assignments in a university.
Apart from the facilities of usual programming contest portals, this portal provides facilities which are well suited for assignment submission.
These additional features include: Instructor (Problem poster) grades above judge scores, soft and hard deadlines for assignments including penalties, customizable compilation and test script, linter scores etc.

## Prerequisites

The prerequisites are:
* Python 3.7
* Django 2.2
* social-auth-app-django (Install using ```pip install social-auth-app-django```)

## Running the program

* Clone this repo
* Go to the directory and run
```
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver
```
* Also run the `submission_watcher_saver` program.
To evaluate the submissions as and when they are submitted, it is preferred that the program be kept running in parallel with the judge server.
```
$ python submission_watcher_saver.py
```

## License

This code is licensed under [MIT](LICENSE).
3 changes: 3 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Welcome to PDP's documentation!
===============================
This is an implementation of an online judge.
The portal can be used for conducting programming contests as well as managing assignments in a university.
Apart from the facilities of usual programming contest portals, this portal provides facilities which are well suited for assignment submission.

.. toctree::
:maxdepth: 2
Expand Down

0 comments on commit cde1c74

Please sign in to comment.