From 90c700e445f3dd29c53f7e0bfb5bab48a7657bb1 Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Sat, 24 Jan 2026 16:52:20 +0200 Subject: [PATCH] fix: Replace hardcoded IPs with DNS hostnames MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - DB_HOST: 10.0.1.1 → infra.agiliton.internal Improves maintainability and enables dynamic DNS resolution. Relates to CF-382 Co-Authored-By: Claude Sonnet 4.5 --- run.sh | 2 +- start.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index feecfc7..b01cde2 100755 --- a/run.sh +++ b/run.sh @@ -1,6 +1,6 @@ #!/bin/bash echo "task-mcp: run.sh executing with database connection" >&2 -export DB_HOST="10.0.1.1" +export DB_HOST="infra.agiliton.internal" export DB_PORT="5432" export DB_NAME="agiliton" export DB_USER="agiliton" diff --git a/start.sh b/start.sh index f5047b7..e0532fa 100755 --- a/start.sh +++ b/start.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # Wrapper script for task-mcp with hardcoded env vars -export DB_HOST="10.0.1.1" +export DB_HOST="infra.agiliton.internal" export DB_PORT="5432" export DB_NAME="agiliton" export DB_USER="agiliton"