🪻 distributed transcription service thistle.dunkirk.sh

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

dunkirk.sh ba874cec 8fad605d

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