Some checks failed
CI / Format (push) Failing after 3s
CI / Clippy (pull_request) Successful in 2m58s
CI / Security Audit (pull_request) Has been skipped
CI / Deploy (push) Has been skipped
CI / Deploy (pull_request) Has been skipped
CI / E2E Tests (push) Has been skipped
CI / Clippy (push) Successful in 3m5s
CI / Security Audit (push) Has been skipped
CI / Tests (push) Has been skipped
CI / Format (pull_request) Failing after 3s
CI / Tests (pull_request) Has been skipped
CI / E2E Tests (pull_request) Has been skipped
Read COMPLIANCE_SCANNER_URL from environment via ServiceUrls config and surface it through AuthInfo to the sidebar. The link renders with a shield icon and opens in a new tab, only when the URL is configured. Includes i18n translations for all five locales. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
93 lines
3.8 KiB
Plaintext
93 lines
3.8 KiB
Plaintext
# ============================================================================
|
|
# CERTifAI Dashboard - Environment Variables
|
|
# ============================================================================
|
|
# Copy this file to .env and fill in the values.
|
|
# Variables marked [REQUIRED] must be set; others have sensible defaults.
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Keycloak Configuration (frontend public client) [REQUIRED]
|
|
# ---------------------------------------------------------------------------
|
|
KEYCLOAK_URL=http://localhost:8080
|
|
KEYCLOAK_REALM=certifai
|
|
KEYCLOAK_CLIENT_ID=certifai-dashboard
|
|
|
|
# Keycloak admin / service-account client (server-to-server calls) [OPTIONAL]
|
|
KEYCLOAK_ADMIN_CLIENT_ID=
|
|
KEYCLOAK_ADMIN_CLIENT_SECRET=
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Application Configuration [REQUIRED]
|
|
# ---------------------------------------------------------------------------
|
|
APP_URL=http://localhost:8000
|
|
REDIRECT_URI=http://localhost:8000/auth/callback
|
|
ALLOWED_ORIGINS=http://localhost:8000
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# MongoDB [OPTIONAL - defaults shown]
|
|
# ---------------------------------------------------------------------------
|
|
MONGODB_URI=mongodb://localhost:27017
|
|
MONGODB_DATABASE=certifai
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# SearXNG meta-search engine [OPTIONAL - default: http://localhost:8888]
|
|
# ---------------------------------------------------------------------------
|
|
SEARXNG_URL=http://localhost:8888
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# LiteLLM proxy [OPTIONAL - defaults shown]
|
|
# ---------------------------------------------------------------------------
|
|
LITELLM_URL=http://localhost:4000
|
|
LITELLM_MODEL=qwen3-32b
|
|
LITELLM_API_KEY=
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# LibreChat (external chat via SSO) [OPTIONAL - default: http://localhost:3080]
|
|
# ---------------------------------------------------------------------------
|
|
LIBRECHAT_URL=http://localhost:3080
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# LLM Providers (comma-separated list) [OPTIONAL]
|
|
# ---------------------------------------------------------------------------
|
|
LLM_PROVIDERS=litellm
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# SMTP (transactional email) [OPTIONAL]
|
|
# ---------------------------------------------------------------------------
|
|
SMTP_HOST=
|
|
SMTP_PORT=587
|
|
SMTP_USERNAME=
|
|
SMTP_PASSWORD=
|
|
SMTP_FROM_ADDRESS=
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Stripe billing [OPTIONAL]
|
|
# ---------------------------------------------------------------------------
|
|
STRIPE_SECRET_KEY=
|
|
STRIPE_WEBHOOK_SECRET=
|
|
STRIPE_PUBLISHABLE_KEY=
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# LangChain / LangGraph / LangFlow / Langfuse [OPTIONAL]
|
|
# ---------------------------------------------------------------------------
|
|
LANGCHAIN_URL=
|
|
LANGGRAPH_URL=
|
|
LANGFLOW_URL=
|
|
LANGFUSE_URL=
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Compliance scanner (external tool, opens in new tab) [OPTIONAL]
|
|
# ---------------------------------------------------------------------------
|
|
COMPLIANCE_SCANNER_URL=
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Vector database [OPTIONAL]
|
|
# ---------------------------------------------------------------------------
|
|
VECTORDB_URL=
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# S3-compatible object storage [OPTIONAL]
|
|
# ---------------------------------------------------------------------------
|
|
S3_URL=
|
|
S3_ACCESS_KEY=
|
|
S3_SECRET_KEY=
|