/** * Generates a fresh AES-256-GCM key for CREDENTIALS_ENCRYPTION_KEY. * Usage: npm run generate-key */ import crypto from "node:crypto"; console.log(crypto.randomBytes(32).toString("base64"));