From 740a572a5384f93495514eef6e4902c400e2202c Mon Sep 17 00:00:00 2001 From: r-carroll Date: Sat, 27 Jul 2024 13:14:05 -0400 Subject: [PATCH] update host --- pi/backend/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pi/backend/app.js b/pi/backend/app.js index 4ee3cb9..249c2ea 100644 --- a/pi/backend/app.js +++ b/pi/backend/app.js @@ -58,7 +58,7 @@ app.post('/reading',async (request,response) => { }); -app.listen(port, '127.0.0.1', () => { +app.listen(port, () => { console.log(`Example app listening on port ${port}`) })