fushar / regrader

ICPC-style programming contest system
MIT License
34 stars 25 forks source link
competitive-programming

Regrader

Regrader is not maintained anymore in favor of ia-toki/judgels. See #88 for details.


An ICPC-style programming contest system.

Built on top of:

Testimonial

I needed a judging system for programming contest and spent days and nights on looking for one. Then I found Regrader - one of the best programming contest management systems on the internet. It's an open source project and extremely easy to install!

What I loved about the system is its flexibility and user-friendliness. With just a few clicks you are able to make a fully custom design of your Regrader page, suiting your needs. Moreover the system itself is stable and reliable.

Do what I did - try Regrader, you won't regret it!

- Vasil Sarafov, Bulgaria

Installation Guide

1. Install dependencies

Regrader requires these packages. Please install them.

2. Download Regrader

Download a copy of the latest Regrader: https://github.com/fushar/regrader/releases/download/v3.0.0/regrader-v3.0.0.tar.gz

3. Configure Regrader

Create an InnoDB database in your MySQL database server.

Then, make a copy of .env from .env.example:

$ cp .env.example .env

And edit each entry of .env based on your system configuration:

Finally, make sure your php.ini file has date.timezone option set.

4. Install Regrader

Open Regrader in your browser, and perform the installation steps as instructed. If at any step the system cannot install at some specified directories, please add write permission on them.

5. Run the grader engine

Execute run_grader.sh script on your host:

./run_grader.sh

Configuring the System

1. Change admin password

Open Manage->Users. Edit admin user and change the password to something else.

2. Configure programming languages

Open Manage->Languages. There will be 4 programming languages set up by default: Pascal, Java, C++, and C. For each language you want to actually use, you have to at least edit its compile command as necessary depending where you install the compiler.

3. Configure additional options

Open Manage->Options and configure additional properties of the system.

Using the System

After installation, you can log in and add users, contests, problems, etc. The interface should be quite intuitive to use :)

Miscellaneous

Solution checker

You can set up a solution checker for your problems. This is useful for problems that can have multiple solutions. The template for a checker can be found here: https://github.com/fushar/regrader/blob/develop/examples/checker.cpp.

Internationalization

Regrader currently supports English and Indonesian. To change the language to Indonesian, open application/config/config.php and change the value of $config['language'] into 'indonesian'.

Institution logos

You can show institution logos beside the contestant names in the scoreboard. The scoreboard will look very nice. Just upload X.jpg in Manage->Files as the logo for institution X. Then, tick the option Show Institution Logos in the corresponding contest's setting.

Public files

You can use Manage->Files to upload public files, for example, for inserting images in problem statements.

Public raw scoreboard

Besides the usual public scoreboard, you can also generate public scoreboard that is separated from the system. This is useful for hiding the contest URL address from the public and in order to minimize traffic and external attack.

Of course, to achieve a semi-live scoreboard, you have to do the above steps periodically, possibly using a script.

Got any weird errors?

Here are common suggestions that should solve most possible errors:

License

Regrader is licensed under MIT License.

Contributing

Contributions are welcome! To set up Regrader for development, you need:

After that, fork and clone Regrader. Then, run

./build.sh

You are then ready to develop.

To produce a tar.gz that is ready to deploy, run

./publish.sh