Default base URL to what the client needs

This commit is contained in:
cheddar 2025-02-22 14:43:25 -05:00
parent 9897b9bcf3
commit b6a2588ddd
No known key found for this signature in database

View file

@ -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")