Replace hardcoded IPs with DNS hostnames

- Updated db.ts to use infra.agiliton.internal with env var fallback
- Updated run.js to use infra.agiliton.internal for DB_HOST
- Rebuilt dist files with new configuration

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-01-17 09:11:37 +02:00
parent 90bb7e94f0
commit 8db391f680
2 changed files with 3 additions and 3 deletions

2
run.js
View File

@@ -1,7 +1,7 @@
#!/usr/bin/env node
// Entry point with hardcoded env vars for Claude Code MCP
process.env.DB_HOST = "10.0.1.1";
process.env.DB_HOST = "infra.agiliton.internal";
process.env.DB_PORT = "5432";
process.env.DB_NAME = "agiliton";
process.env.DB_USER = "agiliton";