#!/usr/bin/env node /** * OAuth Setup Helper * * Guides you through the one-time OAuth authorization flow: * 1. Generates authorization URL * 2. You visit the URL in a browser and authorize * 3. Paste the authorization code back here * 4. Tokens are printed — add them to your .env * * Usage: * npx tsx src/scripts/oauth-setup.ts * -- or after build -- * node dist/scripts/oauth-setup.js */ import 'dotenv/config'; //# sourceMappingURL=oauth-setup.d.ts.map