SPB Git

spb/airiskindex Public

The most methodologically rigorous, fully transparent AI job-exposure index.

TypeScript 88% Python 6.1% SQL 2.7% CSS 1.2% JavaScript 0.9% Shell 0.8%
534 B · 24 lines yaml
Raw Blame History
1# Production data services on m3u96b (CLAUDE.md §7). App processes run under2# systemd (airiskindex-web/worker), not in Docker.3services:4  postgres:5    image: postgres:166    restart: always7    environment:8      POSTGRES_USER: ${POSTGRES_USER:?}9      POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?}10      POSTGRES_DB: airiskindex11    ports:12      - "127.0.0.1:5432:5432"13    volumes:14      - pgdata:/var/lib/postgresql/data1516  redis:17    image: redis:718    restart: always19    ports:20      - "127.0.0.1:6379:6379"2122volumes:23  pgdata:24