Revalidate Docs / Revalidate Docs (push) Failing after 2s
E2E CI / Check Duplicate Run (push) Failing after 5s
Test CI / Check Duplicate Run (push) Failing after 6s
E2E CI / Test Web App (push) Has been skipped
Test CI / Test Packages (push) Has been skipped
Test CI / Test App (shard 1/3) (push) Has been skipped
Test CI / Test App (shard 2/3) (push) Has been skipped
Test CI / Test App (shard 3/3) (push) Has been skipped
Test CI / Test Desktop App (push) Has been skipped
🔄 Branch Synchronization / sync-branches (push) Failing after 11s
Test CI / Test Database (push) Has been skipped
Test CI / Merge and Upload App Coverage (push) Has been skipped
Database Schema Visualization CI / build (push) Failing after 4m14s
49 lines
1.3 KiB
Bash
49 lines
1.3 KiB
Bash
# LobeChat Development Environment Configuration
|
|
# ⚠️ DO NOT USE THESE VALUES IN PRODUCTION!
|
|
|
|
# Application
|
|
APP_URL=http://localhost:3010
|
|
|
|
# Allow access to private IP addresses (localhost services) in development
|
|
# https://lobehub.com/docs/self-hosting/environment-variables/basic#ssrf-allow-private-ip-address
|
|
SSRF_ALLOW_PRIVATE_IP_ADDRESS=1
|
|
|
|
# Secrets (pre-generated for development only)
|
|
KEY_VAULTS_SECRET=ww+0igxjGRAAR/eTNFQ55VmhQB5KE5trFZseuntThJs=
|
|
AUTH_SECRET=ww+0igxjGRAAR/eTNFQ55VmhQB5KE5trFZseuntThJs=
|
|
|
|
# Database (PostgreSQL)
|
|
DATABASE_URL=postgresql://postgres:change_this_password_on_production@localhost:5432/lobechat
|
|
DATABASE_DRIVER=node
|
|
|
|
# Redis
|
|
REDIS_URL=redis://localhost:6379
|
|
REDIS_PREFIX=lobechat
|
|
REDIS_TLS=0
|
|
|
|
# S3 Storage (RustFS)
|
|
S3_ACCESS_KEY_ID=admin
|
|
S3_SECRET_ACCESS_KEY=change_this_password_on_production
|
|
S3_ENDPOINT=http://localhost:9000
|
|
S3_BUCKET=lobe
|
|
S3_ENABLE_PATH_STYLE=1
|
|
S3_SET_ACL=0
|
|
|
|
# LLM vision uses base64 to avoid S3 presigned URL issues in development
|
|
LLM_VISION_IMAGE_USE_BASE64=1
|
|
|
|
# Search (SearXNG)
|
|
SEARXNG_URL=http://localhost:8180
|
|
|
|
# Proxy (Optional)
|
|
# HTTP_PROXY=http://localhost:7890
|
|
# HTTPS_PROXY=http://localhost:7890
|
|
|
|
# AI Model API Keys (Required for chat functionality)
|
|
# ANTHROPIC_API_KEY=sk-ant-xxx
|
|
# ANTHROPIC_PROXY_URL=https://api.anthropic.com
|
|
|
|
# OPENAI_API_KEY=sk-xxx
|
|
# OPENAI_PROXY_URL=https://api.openai.com/v1
|
|
|