Files
factorio-signal-exporter/web
Caesar2011 8f200514b1
All checks were successful
Build & Push / build (push) Successful in 3m45s
Added migration docker image
2026-05-17 23:04:15 +02:00
..
2026-05-17 19:55:53 +02:00
2026-05-17 19:55:53 +02:00
2026-05-17 19:55:53 +02:00
2026-05-17 19:55:53 +02:00
2026-05-17 19:55:53 +02:00
2026-05-17 19:55:53 +02:00
2026-05-17 19:55:53 +02:00
2026-05-17 19:55:53 +02:00
2026-05-17 20:58:53 +02:00
2026-05-17 19:55:53 +02:00
2026-05-17 19:55:53 +02:00
2026-05-17 19:55:53 +02:00
2026-05-17 19:55:53 +02:00
2026-05-17 19:55:53 +02:00

Factorio Dashboard

Next.js dashboard for the Signal Exporter Factorio mod. Ingests combinator data via a POST API and visualises it with TimescaleDB as the backing store.

Local Development

Prerequisites: Docker, Node.js 24, npm

# 1. Start TimescaleDB
docker compose up -d

# 2. Install dependencies
npm install

# 3. Run migrations against the local DB
DATABASE_URL=postgresql://factorio:factorio@localhost:5432/factorio npm run migrate

# 4. Start dev server
cp .env.local.example .env.local   # fill in API_TOKEN
npm run dev