#!/bin/bash # Start LangMem Documentation Server with Authentication echo "🚀 Starting LangMem Documentation Server..." echo "🔐 Authentication enabled with basic auth" echo "" # Change to project root cd "$(dirname "$0")/.." # Default port PORT=${1:-8080} # Start the authenticated server python3 scripts/docs_server.py $PORT