- Add node store implementation for edge app - Add adapters factory for node app - Update edge and node transport layers - Update domain rules for edge and node - Add bin scripts for edge and node - Update configs and documentation - Add agent-task node_centralized_mgmt directory
10 lines
299 B
Bash
Executable file
10 lines
299 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
CONFIG_FILE="$REPO_ROOT/configs/edge.yaml"
|
|
|
|
cd "$REPO_ROOT"
|
|
echo "[edge] config=$CONFIG_FILE"
|
|
exec go run ./apps/edge/cmd/edge console --config "$CONFIG_FILE"
|