Default base URL to what the client needs
This commit is contained in:
parent
9897b9bcf3
commit
b6a2588ddd
1 changed files with 1 additions and 1 deletions
2
main.go
2
main.go
|
@ -22,7 +22,7 @@ func main() {
|
||||||
register := flag.Bool("r", false, "Register a key")
|
register := flag.Bool("r", false, "Register a key")
|
||||||
user := flag.String("user", "", "Username to register")
|
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")
|
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")
|
useTempDb := flag.Bool("temp-db", false, "Use a temporary in-memory database")
|
||||||
dbPath := flag.String("db", "", "Path to the sqlite database file")
|
dbPath := flag.String("db", "", "Path to the sqlite database file")
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue