mcp-server-wazuh/run.sh
Gianluca Brigandi ce2460928a first commit
2025-05-07 11:16:24 -07:00

11 lines
205 B
Bash
Executable File

#!/bin/bash
if [ ! -f .env ]; then
echo "No .env file found. Creating from .env.example..."
cp .env.example .env
echo "Please edit .env file with your configuration."
exit 1
fi
cargo run