Whoops-UI is a self-hosted React app that lets you visualize your Whoop metrics in the browser, create your own charts and dashboards.
You can choose to pull data directly from Whoop or from your self-hosted Whoops.
All your data stays private.
- Visualize your Whoop metrics with interactive charts.
- Create your own dashboards or use the pre-defined ones.
- Choose data source: Whoop API or Whoops.
Tip
Some data types, like Cycles, are limited in the Whoop API (only the latest 10 results). Using Whoops lets you retain a much larger history, since it exports and stores your data daily in a private database.
- Docker (or a Kubernetes cluster)
Only one of the below is required:
- A Whoop API Client ID and Client Secret from the Whoop Developer Dashboard.
- The URL of your Whoops.
See templates for Docker and Kubernetes examples.
Using Docker compose:
services:
whoops:
image: ghcr.io/kryoseu/whoops-ui:latest
container_name: whoops-ui
ports:
- "3000:3000"
environment:
WHOOPS_URL: "http://localhost:5000" # required if using Whoops as data source
WHOOP_CLIENT_ID: "" # required if using Whoop as data source
WHOOP_CLIENT_SECRET: "" # required if using Whoop as data source
WHOOP_REDIRECT_URI: "http://localhost:3000/api/whoop/callback" # required if using Whoop as data source
volumes:
- /path/to/config:/app/config # use a valid path to store your dashboards
restart: unless-stoppedor Docker run:
docker run --name whoops-ui \
-e WHOOPS_URL="http://localhost:5000" \
-e WHOOP_CLIENT_ID="" \
-e WHOOP_CLIENT_SECRET="" \
-e WHOOP_REDIRECT_URI="http://localhost:3000/api/whoop/callback" \
-p 3000:3000 \
-v /path/to/config:/app/config \
--restart unless-stopped \
ghcr.io/kryoseu/whoops-ui:latestImportant
The redirect URL configured for your Whoops-UI app must match the URL where Whoops-UI will run (e.g., http://localhost:3000/api/whoop/callback).
Clone the repository:
git clone git@github.com:kryoseu/whoops-ui.git
Install dependencies and build for production:
pnpm install
pnpm build
Run server:
pnpm start
- Navigate to http://localhost:3000/.
- Select source of your data, Whoop or Whoops.
- See your metrics, create your charts and dashboards!
If you like Whoops-UI and want to help keep it improving, you can support me via:
Thank you for your support! 💛
