Enhance peer display by including peer names alongside IP addresses in the WebUI and CLI. Update peer data retrieval to fetch names from node information.

This commit is contained in:
Andy Oknen 2025-08-15 14:25:58 +00:00
parent 1ca92725af
commit 8ee5c9fbe1
4 changed files with 73 additions and 2 deletions

38
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,38 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug Yggdrasil with Config (Root)",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/yggdrasil",
"cwd": "${workspaceFolder}",
"env": {},
"args": [
"-useconffile",
"yggdrasil.json"
],
"showLog": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"asRoot": true
},
{
"name": "Debug Yggdrasilctl",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/yggdrasilctl",
"cwd": "${workspaceFolder}",
"env": {},
"args": [],
"showLog": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}