Core engine for a modular competition-evaluation platform. Users submit tools and benchmarks; the code runs on a provisioned worker, and results are collected, scored, and displayed. Django REST backend + React/TypeScript (Vite) frontend.
This is the core component powering the evaluation platforms of VNN-COMP and ARCH-COMP.
Individual competitions are plugins in their own repos
(vnn-eval-platform,
arch-eval-platform, …).
Clone either variant and follow the Getting Started guide there.
If you want to use this core component for a new submission platform, it also might be best to check out how this was done for each of the existing variants. Don't hesitate to reach out for any questions regarding this!
- Docker + Docker Compose (Docker Desktop on macOS/Windows). The dev backend mounts the host Docker socket to run worker containers.
- Git.
Frontend tests cover shared status/result formatting, API list handling, authentication state, protected-route access, and toolkit and benchmark submission workflows:
cd frontend
npm ci
npm testBackend tests can be run with:
docker run --rm -v "$PWD:/core" -w /core python:3.11-slim \
sh -c "pip install -q -e '.[dev]' && pytest"The GitHub Actions workflow in .github/workflows/ci.yml runs for pushes to every branch, pull
requests, and manual dispatches. It runs the core Python tests and tests and builds the shared
frontend.
Full architecture and rationale in docs/unified-platform.md.