#Wecode
Wecode judge, originally forked fromSharif Judge, is a free and open source online judge for C, C++, Java and Python programming courses.
The web interface is written in PHP (CodeIgniter framework) and the main backend is written in BASH.
Python is not sandboxed yet. Just a low level of security is provided for python. If you want to use Wecode judge for python, USE IT AT YOUR OWN RISK or provide sandboxing yourself.
The full documentation is at https://github.com/mjnaderi/Sharif-Judge/tree/docs
Download the latest release from https://github.com/mjnaderi/Sharif-Judge/releases
- Multiple user roles (admin, head instructor, instructor, student)
- Sandboxing (not yet for python)
- Cheat detection (similar codes detection) using Moss
- Custom rule for grading late submissions
- Submission queue
- Download results in excel file
- Download submitted codes in zip file
- "Output Comparison" and "Tester Code" methods for checking output correctness
- Add multiple users
- Problem Descriptions (PDF/Markdown/HTML)
- Rejudge
- Scoreboard
- Notifications
- ...
For running Wecode judge, a Linux server with following requirements is needed:
- Webserver running PHP version 5.3 or later with
mysqliextension - PHP CLI (PHP command line interface, i.e.
phpshell command) - MySql or PostgreSql database
- PHP must have permission to run shell commands using
shell_exec()php function (speciallyshell_exec("php");) - Tools for compiling and running submitted codes (
gcc,g++,javac,java,python2andpython3commands) - It is better to have
perlinstalled for more precise time and memory limit and imposing size limit on output of submitted code.
- Clone latest release from github repository into a directory with read/write permission. Then put the index.php file in your public directory
- Take note the location of
systemandapplicationfolders, then save their full path inindex.phpfile ($system_pathand$application_foldervariables). - Create a MySql or PostgreSql database for Wecode judge. Do not install any database connection package for C/C++, Java or Python.
- For some weird reason with CodeIgniter, your database name must not contain dot "." character
- Copy
application/config/database.php.exampleto application/config/database.php and set approriate database connection settings - Make
application/cache/Twigwritable by php. - Open the main page of Wecode judge in a web browser and follow the installation process.
- Log in with your admin account.
- [IMPORTANT] Move folders
testerandassignmentssomewhere outside your public directory. Then save their full path inSettingspage. These two folders must be writable by PHP. Submitted files will be stored inassignmentsfolder. So it should be somewhere not publicly accessible. - [IMPORTANT] Secure Wecode judge
- Read the documentation
GPL v3