From 83cbb69e40fc68606b03b26d70d0a6a0d153fda6 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Sun, 1 Jun 2025 20:34:37 -0400 Subject: fig-web: Support --sim-auth --- fig-web/main/Main.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fig-web/main/Main.hs') diff --git a/fig-web/main/Main.hs b/fig-web/main/Main.hs index 89ac345..909127e 100644 --- a/fig-web/main/Main.hs +++ b/fig-web/main/Main.hs @@ -25,7 +25,7 @@ data Command | Secure SecureOptions parseCommand :: Parser Command -parseCommand = subparser $ mconcat +parseCommand = hsubparser $ mconcat [ command "public" $ info (Public <$> parsePublicOptions) (progDesc "Launch the public web server") , command "secure" $ info (Secure <$> parseSecureOptions) (progDesc "Launch the private web server (intended to be run behind authentication proxy)") ] @@ -49,7 +49,7 @@ main :: IO () main = do opts <- execParser $ info (parseOpts <**> helper) ( fullDesc - <> Options.Applicative.header "fig-web - public-facing web applications" + <> Options.Applicative.header "fig-web - web backends" ) cfg <- loadConfig opts.config case opts.cmd of -- cgit v1.2.3