TCD Cron Watchwatchdog
Forgot your password?
There is no reset link to send you. This dashboard watches one site and has one shared password, kept as the DASHBOARD_PASSWORD environment variable on its Vercel project — there are no accounts here, so there is no address to mail and nothing to reset.
Recovery is therefore whoever can reach that project. If that is you, you can read the current password back or replace it.
1Read it back
Vercel → the
tcd-cron-watch project → Settings → Environment Variables, and reveal DASHBOARD_PASSWORD. From a checkout of the repo, vercel env pull writes the same value into .env.local.2Or replace it
Generate something new and set it, then redeploy — environment changes only reach the running site on the next deployment.
openssl rand -base64 18 vercel env rm DASHBOARD_PASSWORD production vercel env add DASHBOARD_PASSWORD production vercel --prod
3If a browser may be compromised
Changing the password does not sign anyone out: sessions are signed with a separate key. Set a new
SESSION_SECRET to invalidate every signed-in browser at once.Checking continues while nobody is signed in · alerts are emailed either way