limbo-ai 1.24.3 → 1.24.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "limbo-ai",
3
- "version": "1.24.3",
3
+ "version": "1.24.4",
4
4
  "description": "Your personal AI memory agent — install and manage Limbo via npx",
5
5
  "type": "commonjs",
6
6
  "bin": {
@@ -886,7 +886,7 @@ module.exports = {
886
886
  if (require.main === module) {
887
887
  const server = http.createServer(handleRequest);
888
888
 
889
- server.listen(PORT, '127.0.0.1', () => {
889
+ server.listen(PORT, '0.0.0.0', () => {
890
890
  log(`Limbo Setup Wizard listening on port ${PORT}`);
891
891
  log(`SETUP_URL=http://127.0.0.1:${PORT}/?token=${SETUP_TOKEN}`);
892
892
  log('Share the URL above with the user to complete setup.');