File size: 550 Bytes
8005bfd 77813d6 76d0080 8005bfd 6628f79 8005bfd 76d0080 8005bfd 647e3bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/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"
|