Clean and organize project structure
Major reorganization: - Created scripts/ directory for all utility scripts - Created config/ directory for configuration files - Moved all test files to tests/ directory - Updated all script paths to work with new structure - Updated README.md with new project structure diagram New structure: ├── src/ # Source code (API + MCP) ├── scripts/ # Utility scripts (start-*.sh, docs_server.py, etc.) ├── tests/ # All test files and debug utilities ├── config/ # Configuration files (JSON, Caddy config) ├── docs/ # Documentation website └── logs/ # Log files All scripts updated to use relative paths from project root. Documentation updated with new folder structure. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
15
scripts/start-docs-server.sh
Executable file
15
scripts/start-docs-server.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user