Challenger service was used in ACM DEBS 21 [1] and ACM DEBS 22 [2] to disseminate data and benchmark solutions of the Grand Challenge participants.
- Python 3.8
- Gradle
- PostgreSQL
- You need to create the database and the valid users first.
- Run the following commands
# Login Database
sudo -iu postgres
psql
# Create a database
create database bandency;
create user bandency with encrypted password 'bandency';
grant all privileges on database bandency to bandency;
# Run in query tool
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
# Create database
./web/upgradedb.sh
- Download the dataset from Zonodo [3] and place the zip file in resources folder.
- Run Main
- gRPC server now runs at port 52923
- Install dependencies
- Then run startwebserver
cd web
./startwebserver
- Run the admin file as:
python3 frontend/admin.py newgroup --email [email protected] --skipmail true --makevm false