mirror of
https://github.com/gbrigandi/mcp-server-wazuh.git
synced 2025-07-13 07:04:49 -06:00
11 lines
205 B
Bash
Executable File
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
|