From 15316824a06e1a37923639a2e51025e52486099a Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Fri, 14 Aug 2026 18:53:36 +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. --- components/Hero.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/Hero.tsx b/components/Hero.tsx index 32cd96d..df4c6d9 100644 --- a/components/Hero.tsx +++ b/components/Hero.tsx @@ -20,6 +20,7 @@ const DEMO_COPY_COMMAND = `docker run -p 8080:8080 -u root \\ quay.io/authorizer/authorizer \\ --database-type=sqlite \\ --database-url=/authorizer/data/data.db \\ + --url=http://localhost:8080 \\ --client-id=123456 \\ --client-secret=secret \\ --admin-secret=admin \\