Skip to content

Commit eec9807

Browse files
cevhericlaude
andcommitted
fix: refresh stale GitHub star fallback values (kubernetes 116k->123k, etc.)
All FALLBACK_STARS were stale; since production (GitHub Pages CI) usually hits the unauthenticated GitHub API rate limit, these fallbacks are what visitors actually see. Snapshotted current counts (2026-06-22): coolify 42k->57k, dokploy 19k->35k, portainer 32k->38k, kubernetes 116k->123k, plus others. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 8e673e4 commit eec9807

1 file changed

Lines changed: 17 additions & 14 deletions

File tree

src/lib/github-stars.ts

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
11
/**
22
* Approximate star counts baked in as a fallback so a build that is offline or
33
* rate-limited still renders a number (and the client refresh can update it).
4-
* Snapshot these from the live repos when editing the data file.
4+
* Note: production builds (GitHub Pages CI) frequently hit the unauthenticated
5+
* GitHub API rate limit, so these fallbacks are what most visitors actually see
6+
* — keep them current. Snapshot from the live repos when editing the data file.
7+
* Last snapshot: 2026-06-22.
58
*/
69
export const FALLBACK_STARS: Record<string, number> = {
7-
'caprover/caprover': 13700,
8-
'coollabsio/coolify': 42000,
9-
'Dokploy/dokploy': 19000,
10-
'portainer/portainer': 32000,
11-
'dokku/dokku': 30000,
12-
'kubero-dev/kubero': 1700,
13-
'basecamp/kamal': 13000,
14-
'rancher/rancher': 24000,
15-
'okd-project/okd': 1700,
16-
'kubernetes/kubernetes': 116000,
17-
'appwrite/appwrite': 51000,
18-
'nhost/nhost': 8000,
19-
'azukaar/Cosmos-Server': 4000,
10+
'caprover/caprover': 15000,
11+
'coollabsio/coolify': 57000,
12+
'Dokploy/dokploy': 35000,
13+
'portainer/portainer': 38000,
14+
'dokku/dokku': 32000,
15+
'kubero-dev/kubero': 4300,
16+
'basecamp/kamal': 14000,
17+
'rancher/rancher': 26000,
18+
'okd-project/okd': 2100,
19+
'kubernetes/kubernetes': 123000,
20+
'appwrite/appwrite': 56000,
21+
'nhost/nhost': 9200,
22+
'azukaar/Cosmos-Server': 6000,
2023
};
2124

2225
/** 41200 -> "41.2k", 132000 -> "132k", 980 -> "980". */

0 commit comments

Comments
 (0)