Files
factorio-signal-exporter/web/README.md
Caesar2011 e4e9ebd737
Some checks failed
Build & Push / build (push) Failing after 5m41s
feat: add Dockerfile, Helm chart, Gitea Actions workflow
2026-05-17 20:36:29 +02:00

22 lines
563 B
Markdown

# Factorio Dashboard
Next.js dashboard for the [Signal Exporter](../README.md) 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
```bash
# 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