Compare commits

...

2 commits

Author SHA1 Message Date
fe49601b30 break: remove /ws from websocket path 2024-11-18 19:14:42 +01:00
718b6ac4cd feat: update usage output
- add custom usage message
- include instructions for WebSocket client connection

🤖
2024-11-18 19:14:42 +01:00
2 changed files with 9 additions and 2 deletions

View file

@ -24,6 +24,13 @@ var (
// Start the pomodoro server
func Start() {
// Update usage output
flag.Usage = func() {
fmt.Fprintf(flag.CommandLine.Output(), "Usage of %s:\n", "GoTomato")
flag.PrintDefaults()
fmt.Println("\nPoint your client to 'ws://<listenAddress>:<listenPort>'")
}
flag.Parse()
// show server and protocl version and exit
@ -45,7 +52,7 @@ func Start() {
// start connection handler and broadcast
r := http.NewServeMux()
r.HandleFunc("/ws", websocket.HandleConnection)
r.HandleFunc("/", websocket.HandleConnection)
go websocket.SendPermanentBroadCastMessage()
helper.Logger.Info("GoTomato started", "version", metadata.GoTomatoVersion)

View file

@ -64,7 +64,7 @@
<button id="resetButton" style="display: none;">Reset</button>
<script>
var ws = new WebSocket("ws://localhost:8080/ws");
var ws = new WebSocket("ws://localhost:8080");
var isPaused = false; // Track if the timer is paused
ws.onopen = function () {