From de392d52ea5ed98b553b32434e18d32686ad0f71 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Thu, 25 Dec 2025 16:05:09 -0600 Subject: [PATCH] Add linking tool script to set environment variables and import main application module --- bin/linking-tool.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 bin/linking-tool.js diff --git a/bin/linking-tool.js b/bin/linking-tool.js new file mode 100755 index 0000000..6f212b3 --- /dev/null +++ b/bin/linking-tool.js @@ -0,0 +1,7 @@ +#!/usr/bin/env node + +process.env.HOST = process.env.HOST || '127.0.0.1'; +process.env.PORT = process.env.PORT || '3000'; + +import '../build/index.js'; +