The Appview for the kipclip.com atproto bookmarking service
at main 1.2 kB view raw
1# Local Development Environment Variables 2# Copy this file to .env and fill in your values 3 4# Base URL for your application 5# Deno Deploy production: https://kipclip.com 6# Local development: http://127.0.0.1:8000 (use 127.0.0.1, not localhost - RFC 8252) 7BASE_URL=http://127.0.0.1:8000 8 9# Cookie secret for session encryption 10# IMPORTANT: Generate a secure random string (minimum 32 characters) 11# You can generate one with: openssl rand -base64 32 12COOKIE_SECRET=your-secure-random-secret-minimum-32-chars-long 13 14# Encryption key for sensitive user data (e.g., Instapaper credentials) 15# IMPORTANT: Generate a secure random string (minimum 32 characters) 16# You can generate one with: openssl rand -base64 32 17ENCRYPTION_KEY=your-secure-encryption-key-minimum-32-chars-long 18 19# Optional: Custom port for local dev server (default: 8000) 20# PORT=8000 21 22# Turso/libSQL Database 23# For local development: leave unset (uses file:.local/kipclip.db) 24# For production: use your Turso database URL 25# TURSO_DATABASE_URL=libsql://your-db.turso.io 26# TURSO_AUTH_TOKEN=your-auth-token 27 28# Sentry Error Tracking (optional) 29# Get your DSN from: Settings → Projects → [project] → Client Keys (DSN) 30# SENTRY_DSN=https://xxx@xxx.ingest.sentry.io/xxx