Unofficial hobby dashboard for exploring Wolt order history. Not affiliated with Wolt.
Live demo: https://mekedron.github.io/wolt-stats/
| Primary | Secondary | Tertiary |
|---|---|---|
![]() |
![]() |
![]() |
- Syncs your Wolt order history into a local SQLite database
- Keeps reruns cheap by syncing incrementally by default
- Lets you filter by user, country, city, venue, venue type, currency, day split, and date range
- Shows spending, order cadence, fee pressure, venue patterns, and dish price trends
- Supports multiple users in the same database
- Node.js 20+
- npm
wolt-cli
Install wolt-cli:
brew tap mekedron/tap
brew install wolt-cliCheck that it works:
wolt --helpnpm installThe sync writes to static/data/wolt-history.sqlite.
./scripts/sync-wolt-history.sh \
--userEmail you@example.com \
--expectedOrderCount 870Useful variants:
./scripts/sync-wolt-history.sh --help
./scripts/sync-wolt-history.sh --userEmail you@example.com --expectedOrderCount 870
./scripts/sync-wolt-history.sh --userEmail you@example.com --expectedOrderCount 870 --fullNotes:
- normal runs are incremental
--fullforces a full history rescan- the database file is git-ignored and should stay private
Create a separate one-year fake database for previews:
npm run db:demoThat command:
- keeps your real sync database at
static/data/wolt-history.sqlite - writes a committed fake preview database to
static/data/wolt-history-demo.sqlite - makes an ignored backup copy of the live DB before generating demo data
- uses a stable demo window ending on
2026-03-10unless you override--endDate
Build the app against the fake preview database:
npm run build:demoFor GitHub Pages project-site builds with the fake database:
npm run build:pages:demoThat demo build stages only the fake database into the public bundle, so your real
wolt-history.sqlite file and local backups are not copied into build/.
The GitHub Actions pipeline regenerates this demo database, checks that the committed
sample stays in sync with the generator, runs the full validation gate on pull
requests, and deploys the demo build to GitHub Pages when you push a semantic
version tag like v0.1.0.
npm run devOpen http://localhost:5173.
npm run validatenpm run buildFor GitHub Pages project-site builds:
npm run build:pages

