From 6675d9a5962df6d7ff6c2bc6e05b1238777797aa Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Fri, 14 Aug 2026 18:53:35 +0530 Subject: [PATCH] fix: add --url, required since authorizer 2.4.0 The server exits at boot without --url (authorizerdev/authorizer#764). These commands could not start as written. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index b4e4c9e..f3ec6f6 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,7 @@ docker-up: $(AUTHORIZER_IMAGE) \ --database-type=sqlite \ --database-url=test.db \ + --url=http://localhost:8080 \ --jwt-type=HS256 \ --jwt-secret=test \ --admin-secret=admin \