@fugood/buttress-server-poc 2.23.0-beta.27 → 2.23.0-beta.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/start.mjs +3 -1
- package/lib/index.js +1 -1
- package/package.json +5 -4
- package/public/status.html +896 -0
package/bin/start.mjs
CHANGED
|
@@ -242,7 +242,9 @@ startServer({
|
|
|
242
242
|
'Please configure `Buttress (Remote Inference)` in the Generator to connect to this server.',
|
|
243
243
|
)
|
|
244
244
|
console.log()
|
|
245
|
-
console.log(
|
|
245
|
+
console.log(`- Use http://${ip}:${port}/trpc to connect to this server via LAN.`)
|
|
246
|
+
console.log(`- Visit http://${ip}:${port}/status to see status via LAN.`)
|
|
247
|
+
console.log()
|
|
246
248
|
})
|
|
247
249
|
.catch((error) => {
|
|
248
250
|
console.error('Failed to start Buttress server POC:', error)
|