mirror of
https://github.com/Nighthawk42/VDM.git
synced 2026-08-30 04:30:21 +00:00
23 lines
958 B
Bash
23 lines
958 B
Bash
# ===================================================================
|
|
# VDM - Environment Configuration & Secrets
|
|
# ===================================================================
|
|
# Copy this file to .env and fill in your actual values.
|
|
# This file contains secrets and environment-specific settings.
|
|
# IMPORTANT: DO NOT commit the .env file to version control.
|
|
|
|
# --- Server & Network ---
|
|
# The host IP the server will bind to. Use 0.0.0.0 for network access, 127.0.0.1 for local only.
|
|
SERVER_HOST="0.0.0.0"
|
|
# The network port the server will run on.
|
|
SERVER_PORT="8000"
|
|
|
|
|
|
# --- LLM Provider Secrets & URLs ---
|
|
# Required only if you use the "openrouter" backend. Get from https://openrouter.ai/keys
|
|
OPENROUTER_API_KEY="your-openrouter-api-key-here"
|
|
|
|
# The base URL for your local Ollama server.
|
|
OLLAMA_BASE_URL="http://localhost:11434"
|
|
|
|
# The base URL for your local LM Studio server's OpenAI-compatible API.
|
|
LMSTUDIO_BASE_URL="http://localhost:1234/v1" |