···11import { generateClientAssertionKey } from '@atcute/oauth-node-client';
2233const key = await generateClientAssertionKey('main-key');
44+const json = JSON.stringify(key);
4555-console.log('Add this to your .dev.vars file:\n');
66-console.log(`CLIENT_ASSERTION_KEY=${JSON.stringify(JSON.stringify(key))}`);
77-console.log('\nFor Cloudflare Workers, add it as a secret:');
88-console.log('npx wrangler secret put CLIENT_ASSERTION_KEY');
99-console.log('(paste the JSON value without the outer quotes)');
66+console.log('Generated client assertion key.\n');
77+console.log('Set it as a Cloudflare Workers secret:\n');
88+console.log(' npx wrangler secret put CLIENT_ASSERTION_KEY\n');
99+console.log('Then paste this value:\n');
1010+console.log(json);