spb/llmindex Public
The discriminative, contamination-resistant, fully transparent LLM ranking — updated live.
TypeScript 77.9%
TeX 15.2%
Python 3.7%
SQL 1.4%
JavaScript 1.1%
Shell 0.5%
1# llmindex.io — local dev Postgres 16 + Redis (no SQLite shortcut)2# Author: Simon-Pierre Boucher <contact@spboucher.ai>3services:4 postgres:5 image: postgres:166 environment:7 POSTGRES_USER: llmindex8 POSTGRES_PASSWORD: llmindex9 POSTGRES_DB: llmindex10 ports:11 - "5432:5432"12 volumes:13 - llmindex_pg_dev:/var/lib/postgresql/data14 redis:15 image: redis:716 ports:17 - "6379:6379"1819volumes:20 llmindex_pg_dev:21