Settings
Sync & device
Cross-device sync uses a shared bearer token that lives on your worker. Paste the same token on each device you want to sync.
Sync token
Get the value of SYNC_TOKEN from your Cloudflare worker (set via wrangler secret put SYNC_TOKEN). Paste it below and save. Stored only on this device in localStorage.
How to set the worker secret
- On your machine, generate a strong random string:openssl rand -base64 32
- Push it to the worker:wrangler secret put SYNC_TOKEN
- Paste the same value into the field above on every device.