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 — prod Postgres 16 + Redis (dedicated llmindex DB)2# Author: Simon-Pierre Boucher <contact@spboucher.ai>3# NOTE: on m3u96b the platform currently uses the node's native Homebrew4# Postgres 16 + Redis services (no Docker daemon running); this compose file5# is the containerized equivalent for future Linux hosts.6services:7 postgres:8 image: postgres:169 restart: unless-stopped10 environment:11 POSTGRES_USER: llmindex12 POSTGRES_PASSWORD: ${LLMINDEX_PG_PASSWORD:?set in .env}13 POSTGRES_DB: llmindex14 ports:15 - "127.0.0.1:5432:5432"16 volumes:17 - llmindex_pg:/var/lib/postgresql/data18 redis:19 image: redis:720 restart: unless-stopped21 ports:22 - "127.0.0.1:6379:6379"2324volumes:25 llmindex_pg:26