fes

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit fb8dc3cb90bbbf916e1e2bc401933e7fd9461bca
parent c681e342a0970a9257a05700513ed1238300172b
Author: vx-clutch <[email protected]>
Date:   Sat, 27 Dec 2025 16:29:55 -0500

fix: use 0.0.0.0 instead of 127.0.0.0

Diffstat:
Mmodules/server/server.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/server/server.go b/modules/server/server.go @@ -439,5 +439,5 @@ func Start(dir string) error { }) fmt.Printf("Server is running on http://localhost:%d\n", *config.Port) - return http.ListenAndServe(fmt.Sprintf(":%d", *config.Port), nil) + return http.ListenAndServe(fmt.Sprintf("0.0.0.0:%d", *config.Port), nil) }