import { $ } from "bun" import { apps } from "../src/webapp" const ip = await $`hostname -I | awk '{print $1}'`.quiet() const host = await $`hostname`.quiet() const hosts = apps().map(app => `${ip} ${app}.${host}.local`) console.log(hosts.join("\n"))