6 lines
411 B
Bash
6 lines
411 B
Bash
#!/bin/bash
|
|
# Start the MCP Image Server in the background
|
|
nohup /home/matt/code/llama.cpp/build/bin/mcp-image-server/venv/bin/python3 /home/matt/code/llama.cpp/build/bin/mcp-image-server/server.py > /home/matt/code/llama.cpp/build/bin/mcp-image-server/server.log 2>&1 &
|
|
echo "MCP Image Server started in background on port 8000"
|
|
echo "Log file: /home/matt/code/llama.cpp/build/bin/mcp-image-server/server.log"
|