mirror of
https://github.com/furyhawk/agent_delta.git
synced 2026-07-21 02:05:36 +00:00
16 lines
570 B
Bash
16 lines
570 B
Bash
# Backend API URL (server-side only - not exposed to browser)
|
|
BACKEND_URL=http://localhost:8000
|
|
|
|
# WebSocket URL for real-time features
|
|
BACKEND_WS_URL=ws://localhost:8000
|
|
# Authentication (set to true when JWT or OAuth is enabled)
|
|
NEXT_PUBLIC_AUTH_ENABLED=true
|
|
|
|
# RAG (Retrieval Augmented Generation)
|
|
NEXT_PUBLIC_RAG_ENABLED=true
|
|
|
|
# Logfire/OpenTelemetry (server-side instrumentation)
|
|
# Get your write token from: https://logfire.pydantic.dev
|
|
OTEL_EXPORTER_OTLP_ENDPOINT=https://logfire-api.pydantic.dev
|
|
OTEL_EXPORTER_OTLP_HEADERS=Authorization=your-logfire-write-token
|