Files
wevia-brain/deerflow-status.sh
2026-04-12 23:01:36 +02:00

10 lines
279 B
Bash
Executable File

#!/bin/bash
echo "DEERFLOW STATUS:"
if [ -d /opt/deer-flow ]; then
echo " Dir: /opt/deer-flow"
echo " Git: $(cd /opt/deer-flow && git log --oneline -1 2>/dev/null)"
echo " Process: $(pgrep -f deer-flow -c 2>/dev/null || echo 0) running"
else
echo " NOT INSTALLED"
fi