18 lines
456 B
Bash
18 lines
456 B
Bash
|
|
# Next.js Environment Variables
|
||
|
|
# These will be used as fallback values when K8s environment variables are not set
|
||
|
|
# URL prefix for external routing (used by Ingress)
|
||
|
|
NEXT_PUBLIC_API_URL_PREFIX=/agentic-rag
|
||
|
|
|
||
|
|
# API URL for backend communication
|
||
|
|
NEXT_PUBLIC_API_URL=http://localhost:8000/api
|
||
|
|
|
||
|
|
# # LangGraph API URL
|
||
|
|
# LANGGRAPH_API_URL=http://localhost:8000
|
||
|
|
|
||
|
|
NEXT_PUBLIC_LANGGRAPH_ASSISTANT_ID=default
|
||
|
|
|
||
|
|
# Disable Next.js telemetry
|
||
|
|
NEXT_TELEMETRY_DISABLED=1
|
||
|
|
|
||
|
|
|