sig-auth.git

git clone https://git.crispbyte.dev/sig-auth.git

commit
b6a2588
parent
9897b9b
author
cheddar
date
2025-02-22 20:43:25 +0100 CET
Default base URL to what the client needs
1 files changed,  +1, -1
M main.go
+1, -1
1@@ -22,7 +22,7 @@ func main() {
2 	register := flag.Bool("r", false, "Register a key")
3 	user := flag.String("user", "", "Username to register")
4 	keyPath := flag.String("key", "", "Path to the private key (client mode) or public key (registration mode) to use")
5-	baseUrlString := flag.String("base-url", "http://localhost:8080", "Base URL of the server")
6+	baseUrlString := flag.String("base-url", "http://localhost:8001", "Base URL of the server")
7 	useTempDb := flag.Bool("temp-db", false, "Use a temporary in-memory database")
8 	dbPath := flag.String("db", "", "Path to the sqlite database file")
9