Lanyards is a dedicated profile for researchers, built on the AT Protocol.
at main 19 lines 635 B view raw
1# Authentication Method: 'oauth' or 'app_password' 2# Use 'app_password' for local development, 'oauth' for production 3AUTH_METHOD=app_password 4 5# AT Protocol OAuth Configuration (for AUTH_METHOD=oauth) 6NEXT_PUBLIC_CLIENT_ID= 7OAUTH_CLIENT_SECRET= 8NEXT_PUBLIC_REDIRECT_URI=http://localhost:3000/api/auth/callback 9 10# App Password Configuration (for AUTH_METHOD=app_password) 11# Get your app password from: https://bsky.app/settings/app-passwords 12BLUESKY_HANDLE=your-handle.bsky.social 13BLUESKY_APP_PASSWORD=your-app-password-here 14 15# Application URL 16NEXT_PUBLIC_APP_URL=http://localhost:3000 17 18# PDS Configuration 19PDS_URL=https://bsky.social