NeuroKLEA / scripts /docker-deploy.sh
sanjayankur31's picture
feat: update to use new webgui
647e3bc verified
Raw
History Blame Contribute Delete
550 Bytes
#!/bin/bash
# Copyright 2026 Ankur Sinha
# Author: Ankur Sinha <sanjay DOT ankur AT gmail DOT com>
# File: docker/deploy.sh
#
# Script for docker deployments
echo "Re-starting MCP server"
nml-mcp &
echo "Starting fastapi"
klea-rag-serve --host 127.0.0.1 --port 8005 &
echo "Starting nicegui frontend"
klea-rag web --title "NeuroML RAG" --subtitle "Ask questions about NeuroML " --disclaimer "Information presented here is based on the NeuroML documentation. Please do check the provided references to confirm." --server "http://127.0.0.1:8005"