From 9427dd6c4301ad1849d51a36f5ace39ba8820a7b Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Sun, 21 Sep 2025 21:28:33 -0700 Subject: [PATCH] apps command --- nose/bin/apps.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nose/bin/apps.tsx diff --git a/nose/bin/apps.tsx b/nose/bin/apps.tsx new file mode 100644 index 0000000..1e5aafa --- /dev/null +++ b/nose/bin/apps.tsx @@ -0,0 +1,11 @@ +import { apps } from "@/webapp" + +export default function () { + const domain = "localhost" + let port = process.env.PORT || "3000" + port = port === "80" ? "" : `:${port}` + + return <> + {apps().map(app => <>{app}{" "})} + +} \ No newline at end of file