Files
vessel/.env.example
vikingowl 2c2744fc27 feat: add .env.example and fix hardcoded Ollama URL
- Add .env.example with all documented environment variables
- Fix conversation-summary.ts to use proxy instead of hardcoded localhost

Closes #9
2026-01-22 09:21:49 +01:00

29 lines
781 B
Plaintext

# ===========================================
# Vessel Configuration
# ===========================================
# Copy this file to .env and adjust values as needed.
# All variables have sensible defaults - only set what you need to change.
# ----- Backend -----
# Server port (default: 8080, but 9090 recommended for local dev)
PORT=9090
# SQLite database path (relative to backend working directory)
DB_PATH=./data/vessel.db
# Ollama API endpoint
OLLAMA_URL=http://localhost:11434
# GitHub repo for version checking (format: owner/repo)
GITHUB_REPO=VikingOwl91/vessel
# ----- Frontend -----
# Ollama API endpoint (for frontend proxy)
OLLAMA_API_URL=http://localhost:11434
# Backend API endpoint
BACKEND_URL=http://localhost:9090
# Development server port
DEV_PORT=7842