🪻 distributed transcription service thistle.dunkirk.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: use obviously fake placeholder values in .env.example

Changed from semi-realistic looking values to clearly fake
placeholders using 'paste_your_*_here' format to prevent
confusion with real credentials.

Fixes issue #24

+9 -9
+9 -9
.env.example
··· 5 5 6 6 # LLM API Configuration (REQUIRED for VTT cleaning) 7 7 # Configure your LLM service endpoint and credentials 8 - LLM_API_KEY=your_api_key_here 8 + LLM_API_KEY=paste_your_api_key_here 9 9 LLM_API_BASE_URL=https://openrouter.ai/api/v1 10 10 LLM_MODEL=anthropic/claude-3.5-sonnet 11 11 ··· 24 24 25 25 # Polar.sh Payment Configuration (REQUIRED) 26 26 # Get your organization ID from https://polar.sh/settings 27 - POLAR_ORGANIZATION_ID=your_org_id_here 27 + POLAR_ORGANIZATION_ID=paste_your_org_id_here 28 28 # Get your access token from https://polar.sh/settings (or sandbox.polar.sh for testing) 29 - POLAR_ACCESS_TOKEN=polar_at_xxxxxxxxxxxxx 29 + POLAR_ACCESS_TOKEN=paste_your_polar_token_here 30 30 # Get product ID from your Polar dashboard (create a product first) 31 - POLAR_PRODUCT_ID=prod_xxxxxxxxxxxxx 31 + POLAR_PRODUCT_ID=paste_your_product_id_here 32 32 # Redirect URL after successful checkout (use {CHECKOUT_ID} placeholder) 33 33 POLAR_SUCCESS_URL=http://localhost:3000/checkout?checkout_id={CHECKOUT_ID} 34 34 # Webhook secret for verifying Polar webhook signatures (get from Polar dashboard) 35 - POLAR_WEBHOOK_SECRET=whsec_xxxxxxxxxxxxx 35 + POLAR_WEBHOOK_SECRET=paste_your_webhook_secret_here 36 36 37 37 # Email Configuration (REQUIRED - MailChannels) 38 38 # API key from MailChannels dashboard 39 - MAILCHANNELS_API_KEY=your_mailchannels_api_key_here 39 + MAILCHANNELS_API_KEY=paste_your_mailchannels_api_key_here 40 40 # DKIM private key for email authentication (required for sending emails) 41 41 # Generate: openssl genrsa -out dkim-private.pem 2048 42 42 # Then add TXT record: mailchannels._domainkey.yourdomain.com 43 - DKIM_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nYOUR_PRIVATE_KEY_HERE\n-----END PRIVATE KEY-----" 44 - DKIM_DOMAIN=thistle.app 45 - SMTP_FROM_EMAIL=noreply@thistle.app 43 + DKIM_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nPASTE_YOUR_DKIM_PRIVATE_KEY_HERE\n-----END PRIVATE KEY-----" 44 + DKIM_DOMAIN=yourdomain.com 45 + SMTP_FROM_EMAIL=noreply@yourdomain.com 46 46 SMTP_FROM_NAME=Thistle 47 47 48 48 # Environment (set to 'production' in production)