#!/bin/bash # Copyright 2026 Ankur Sinha # Author: Ankur Sinha # 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 streamlit frontend" klea-rag web --title "OpenWorm AI Assistant" --subtitle "While this system uses information from curated sources, it may still make mistakes. Please check the answers. More information at https://openworm.org" --server "http://127.0.0.1:8005"