Files
t66_langmem/start-docs-server.sh
Docker Config Backup e706ca593c Add authenticated documentation server
- Created docs_server.py with HTTP basic authentication
- Added start-docs-server.sh for easy startup
- Updated README.md with documentation access instructions
- Provides working authentication when .htaccess isn't supported

Usage: ./start-docs-server.sh [port]
Credentials: langmem / langmem2025

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-17 13:31:03 +02:00

12 lines
276 B
Bash
Executable File

#!/bin/bash
# Start LangMem Documentation Server with Authentication
echo "🚀 Starting LangMem Documentation Server..."
echo "🔐 Authentication enabled with basic auth"
echo ""
# Default port
PORT=${1:-8080}
# Start the authenticated server
python3 docs_server.py $PORT