Files

19 lines
521 B
Bash
Raw Permalink Normal View History

2026-03-29 17:12:46 +08:00
# SMTP Configuration for Email Verification
SMTP_HOST=smtp.qq.com
SMTP_PORT=465
SMTP_USER=your_qq_email@qq.com
SMTP_PASSWORD=your_16_digit_auth_code
# Frontend URL for the verification link
FRONTEND_URL=http://localhost:5173
2026-03-31 00:18:32 +08:00
2026-03-31 22:29:58 +08:00
# Tracing Toggle
# Set to true to enable telemetry/tracing (Langfuse, OTEL, etc.). Defaults to false.
ENABLE_TRACING=false
2026-03-31 00:18:32 +08:00
# Langfuse Observability (self-hosted/local)
LANGFUSE_PUBLIC_KEY=pk-lf-your-public-key
LANGFUSE_SECRET_KEY=sk-lf-your-secret-key
LANGFUSE_BASE_URL=http://localhost:3000
2026-03-31 22:29:58 +08:00