This commit is contained in:
2025-05-24 09:24:19 +04:00
parent e60b9f62f1
commit 8bc1759dcb
14 changed files with 1380 additions and 1 deletions

11
scripts/restart_server.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
echo "Stopping any running heroagent processes..."
pkill -f heroagent || true
echo "Building and starting heroagent with enhanced error reporting..."
cd "$(dirname "$0")/.."
go build -o heroagent cmd/heroagent/main.go
./heroagent -ui=true -redis=false -webdav=false -jobs=false
echo "Server started!"