Skip to content

Commit

Permalink
Merge pull request #3347 from input-output-hk/fix/playground-error
Browse files Browse the repository at this point in the history
Quick fix for plutus-playground-server
  • Loading branch information
michaelpj committed Jun 11, 2021
2 parents 47b1c48 + 5b6ae8a commit afc08e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion marlowe-playground-server/app/Webserver.hs
Expand Up @@ -19,5 +19,5 @@ run :: Int -> Maybe FilePath -> IO ()
run port secrets = do
appConfig <- initializeServerContext secrets
handlers <- Server.mkHandlers appConfig
let server = handlers :<|> Webghc.server :<|> MS.handlers
let server = handlers :<|> Webghc.server 80 :<|> MS.handlers
Warp.run port (serve (Proxy @API) server)
2 changes: 1 addition & 1 deletion plutus-playground-server/app/Webserver.hs
Expand Up @@ -18,5 +18,5 @@ run :: Int -> Maybe FilePath -> IO ()
run port secrets = do
appConfig <- initializeServerContext secrets
handlers <- Server.mkHandlers appConfig
let server = handlers :<|> Webghc.server
let server = handlers :<|> Webghc.server 80
Warp.run port (serve (Proxy @API) server)

0 comments on commit afc08e1

Please sign in to comment.