Homepage counters - codalab/codabench GitHub Wiki

The wiki has moved !

This wiki is no longer maintained. Please go to the new link for an updated wiki : https://docs.codabench.org

After upgrading from Codabench <1.15, you will need to follow these steps to compute the homepage counters. See this for more information

  1. Re-build containers
docker compose build && docker compose up -d
  1. Update the homepage counters (to avoid waiting 1 day)
docker compose exec django ./manage.py shell_plus
from analytics.tasks import update_home_page_counters
eager_results = update_home_page_counters.apply_async()