Graph not generating - stuck on "Analyzing repository" #178
-
|
Hi, Running it locally via: Console shows no errors, just hangs indefinitely. Any ideas what might be causing this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hey @BittuChan , The issue is usually one of two things:
Try running with verbose logging if available, or check the network tab in DevTools to see if GitHub API calls are still happening. |
Beta Was this translation helpful? Give feedback.
Hey @BittuChan , The issue is usually one of two things:
Rate limiting - If you're on a personal GitHub token, you might be hitting API rate limits. Check with:
curl -H "Authorization: token YOUR_TOKEN" https://api.github.com/rate_limitIf you're near the limit, wait an hour or use a token with higher limits.
Large commit history - For repos with 2000+ commits, the initial analysis can take 10-15 minutes. It's not stuck, just slow. Check your terminal/console for any fetch progress logs.
Try running with verbose logging if available, or check the network tab in DevTools to see if GitHub API calls are still happening.
Also, make sure you're not hitting any firewall/proxy issues if yo…