chore: update submodule references and documentation
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- Marked submodules ai-mcp-pmm-controller, explorer-monorepo, and smom-dbis-138 as dirty to reflect recent changes. - Updated documentation to clarify operator script usage, including dotenv loading and task execution instructions. - Enhanced the README and various index files to provide clearer navigation and task completion guidance. Made-with: Cursor
This commit is contained in:
@@ -22,12 +22,17 @@ log_error() { echo -e "${RED}[✗]${NC} $1"; }
|
||||
|
||||
cd "$PROJECT_ROOT"
|
||||
|
||||
# Source .env
|
||||
# Source dotenv (operator creds): repo root .env then smom-dbis-138/.env
|
||||
if [ -f .env ]; then
|
||||
set +euo pipefail
|
||||
source .env 2>/dev/null || true
|
||||
set -euo pipefail
|
||||
fi
|
||||
if [ -f smom-dbis-138/.env ]; then
|
||||
set +euo pipefail
|
||||
source smom-dbis-138/.env 2>/dev/null || true
|
||||
set -euo pipefail
|
||||
fi
|
||||
|
||||
# Load ip-addresses.conf for fallbacks (before cd)
|
||||
[ -f "${PROJECT_ROOT}/config/ip-addresses.conf" ] && source "${PROJECT_ROOT}/config/ip-addresses.conf" 2>/dev/null || true
|
||||
|
||||
@@ -192,6 +192,8 @@ verify_vm() {
|
||||
fi
|
||||
|
||||
# Health check endpoints
|
||||
# Note: 301 = HTTPS redirect (normal); 404 = wrong port/path or NPMplus; 000 = no connection (host/firewall/context).
|
||||
# See docs/04-configuration/DETAILED_GAPS_AND_ISSUES_LIST.md §11a.
|
||||
HEALTH_ENDPOINTS=()
|
||||
if [ "$status" = "running" ] && [ -n "$actual_ip" ]; then
|
||||
# Test HTTP endpoints (nginx and web both use port 80)
|
||||
|
||||
Reference in New Issue
Block a user