- Changed BLUESKY_CLIENT_ID to use http://localhost/ with redirect_uri parameter - Updated magnitude.config.ts to use localhost:3000 for testing - Removed public/client-metadata.json (no longer needed with localhost mode) - Updated OAuth test to expect successful redirect to bsky.social This leverages ATproto's special localhost client development mode which allows local OAuth testing without requiring client metadata files. See: https://atproto.com/specs/oauth#localhost-client-development 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
935 B
Bash
28 lines
935 B
Bash
# SurrealDB Configuration
|
|
SURREALDB_URL=ws://localhost:8000/rpc
|
|
SURREALDB_NS=ponderants
|
|
SURREALDB_DB=main
|
|
SURREALDB_USER=root
|
|
SURREALDB_PASS=root
|
|
|
|
# JWT Secret for SurrealDB token minting
|
|
SURREALDB_JWT_SECRET=your-secret-key-here-change-in-production
|
|
|
|
# Google AI API Key (for Gemini embeddings and chat)
|
|
GOOGLE_AI_API_KEY=your-google-ai-api-key
|
|
|
|
# Deepgram API Key (for voice-to-text)
|
|
DEEPGRAM_API_KEY=your-deepgram-api-key
|
|
|
|
# Bluesky/ATproto OAuth Configuration (localhost development mode)
|
|
# See: https://atproto.com/specs/oauth#localhost-client-development
|
|
BLUESKY_CLIENT_ID=http://localhost/?redirect_uri=http://127.0.0.1:3000/api/auth/callback
|
|
BLUESKY_REDIRECT_URI=http://127.0.0.1:3000/api/auth/callback
|
|
|
|
# Test Account Credentials (for E2E tests)
|
|
TEST_BLUESKY_HANDLE=your-test-bluesky-handle
|
|
TEST_BLUESKY_PASSWORD=your-test-bluesky-password
|
|
|
|
# Anthropic API Key (for Magnitude testing)
|
|
ANTHROPIC_API_KEY=your-anthropic-api-key
|