Judge0 API is an web API for code compilation and execution. Complete and detailed API documentation is available on https://api.judge0.com.
- Supported Languages
- Project Organization
- Production Setup
- Development Setup
- Who Uses Judge0 API?
- About Docker Images
- Adding New Compiler or Interpreter
# | Name |
---|---|
1 | Bash (4.4) |
2 | Bash (4.0) |
3 | Basic (fbc 1.05.0) |
4 | C (gcc 7.2.0) |
5 | C (gcc 6.4.0) |
6 | C (gcc 6.3.0) |
7 | C (gcc 5.4.0) |
8 | C (gcc 4.9.4) |
9 | C (gcc 4.8.5) |
10 | C++ (g++ 7.2.0) |
11 | C++ (g++ 6.4.0) |
12 | C++ (g++ 6.3.0) |
13 | C++ (g++ 5.4.0) |
14 | C++ (g++ 4.9.4) |
15 | C++ (g++ 4.8.5) |
16 | C# (mono 5.4.0.167) |
17 | C# (mono 5.2.0.224) |
18 | Clojure (1.8.0) |
19 | Crystal (0.23.1) |
20 | Elixir (1.5.1) |
21 | Erlang (OTP 20.0) |
22 | Go (1.9) |
23 | Haskell (ghc 8.2.1) |
24 | Haskell (ghc 8.0.2) |
25 | Insect (5.0.0) |
26 | Java (OpenJDK 9 with Eclipse OpenJ9) |
27 | Java (OpenJDK 8) |
28 | Java (OpenJDK 7) |
29 | JavaScript (nodejs 8.5.0) |
30 | JavaScript (nodejs 7.10.1) |
31 | OCaml (4.05.0) |
32 | Octave (4.2.0) |
33 | Pascal (fpc 3.0.0) |
34 | Python (3.6.0) |
35 | Python (3.5.3) |
36 | Python (2.7.9) |
37 | Python (2.6.9) |
38 | Ruby (2.4.0) |
39 | Ruby (2.3.3) |
40 | Ruby (2.2.6) |
41 | Ruby (2.1.9) |
42 | Rust (1.20.0) |
43 | Text (plain text) |
44 | Executable |
Judge0 API is a Rails 5 application organized in two major components:
- Rails API
- accepts requests and creates background jobs for Worker.
- Worker
- accepts new jobs and process them as they arrive. Worker has only one job - IsolateJob, that job runs untrusted programs in sandboxed environment.
Every release has it's own deployment procedure that you can follow.
Setting up your development environment is easy thanks to Docker and Docker Compose. So please install those before continuing.
Because we are running our development environment in Docker you don't need to have Ruby, Rails, PostgreSQL, Redis, etc. installed on your computer. You just need to:
- Pull judge0/api image:
$ docker pull judge0/api
- Copy
judge0-api.conf.default
tojudge0-api.conf
. - Run development shell (it will take a while only first time):
$ ./scripts/dev-shell
scripts/dev-shell
script will open you new development shell always in the same container, and if container doesn't exist it will create one for you.
You need to run Rails API and Worker in order to have Judge0 API fully operational:
- Open new development shell and in there run Rails API server:
$ ./scripts/run-server
- Open new development shell again and in there run Worker process:
$ ./scripts/run-workers
- Open http://localhost:3000 in your browser.
This is minimal setup for development environment, now you can open your favorite editor in your host and start developing Judge0 API.
Following projects and organizations successfully use Judge0 API in production:
- University of Zagreb, Faculty of Electrical Engineering and Computing
- KPR Institute of Engineering and Technology
- Institute of Aeronautical Engineering
- Newton School
- Dilla University
- Techie Delight
- CodeForum.ORG
- primat.org
- Codify
- GeekCoders
- Judge Code Online
- Studyfied
- ThinkingBell
- Xiith
- judge0api
- nGrader
- wkspace
- CodeRunner
Do you use Judge0 API? If so, please let me know so I can add you to the list!
This project has two Dockerfiles:
-
- builds
judge0/api:latest
image
- builds
-
- build
judge0/api:dev
image
- build
judge0/api:latest
is built FROM judge0/api-base:latest
image which contains installed compilers and sandbox environment. This image represents production image of Judge0 API.
judge0/api:dev
is your local development image built FROM judge0/api:latest
. It is not pushed to Docker Hub. That is why you first need to pull judge0/api:latest
before building your development environment.
To add new compiler or interpreter you first need to install it into Judge0 API Base image. Instructions on how to do that can be found in documentation for Judge0 API Base.
After you have added your favorite compiler/interpreter to Judge0 API Base image you need to define how this compiler/interpreter is used. This is done in db/seeds.rb
file.
You have four attributes:
name
- name of your language you are supporting, include also compiler name and versionsource_file
- in what file should user's source code be saved before it is compiledcompile_cmd
- how this file is compiled, interpreted languages won't have this attributerun_cmd
- how should we run this compiled or interpreted language
We already provided enough examples for most common languages, be sure to check that out.
If you like Judge0, please consider making a donation to support this project.