mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
20 lines
538 B
Bash
Executable file
20 lines
538 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if ! docker info &> /dev/null; then
|
|
echo "❌ Docker is not running. Please start Docker Desktop and try again."
|
|
exit 1
|
|
fi
|
|
|
|
if ! nc -z localhost 5432 2>/dev/null; then
|
|
echo "❌ PostgreSQL is not running on port 5432"
|
|
echo "💡 Start it with: pnpm --filter @roo-code/evals db:start"
|
|
exit 1
|
|
fi
|
|
|
|
if ! nc -z localhost 6379 2>/dev/null; then
|
|
echo "❌ Redis is not running on port 6379"
|
|
echo "💡 Start it with: pnpm --filter @roo-code/evals redis:start"
|
|
exit 1
|
|
fi
|
|
|
|
echo "✅ All required services are running"
|