From b6a2588ddd1956cb2494655dc18a6918e61dceae Mon Sep 17 00:00:00 2001 From: cheddar Date: Sat, 22 Feb 2025 14:43:25 -0500 Subject: [PATCH] Default base URL to what the client needs --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 47e266a..b9fcbd2 100644 --- a/main.go +++ b/main.go @@ -22,7 +22,7 @@ func main() { register := flag.Bool("r", false, "Register a key") user := flag.String("user", "", "Username to register") keyPath := flag.String("key", "", "Path to the private key (client mode) or public key (registration mode) to use") - baseUrlString := flag.String("base-url", "http://localhost:8080", "Base URL of the server") + baseUrlString := flag.String("base-url", "http://localhost:8001", "Base URL of the server") useTempDb := flag.Bool("temp-db", false, "Use a temporary in-memory database") dbPath := flag.String("db", "", "Path to the sqlite database file")