Skip to content

Homepage counters

Adrien Pavão edited this page Dec 20, 2024 · 1 revision

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()
Clone this wiki locally