Operator securityReturn to your
Return to your
PG workspace.
Platform operator password recovery and credential administration.
Platform Operator RecoveryBack to sign in
Powered by PGFlowOperator Password Reset
Platform operators can reset their password securely via Supabase SQL Editor or using the server CLI utility:
node scripts/reset-operator-password.mjs "YourNewPassword123!"Or execute the SQL statement in your Supabase SQL Editor:
UPDATE auth.users
SET encrypted_password = crypt('YourNewPassword123!', gen_salt('bf'))
WHERE id IN (SELECT auth_user_id FROM public.platform_operators);