diff options
author | Joris | 2020-01-19 16:31:55 +0100 |
---|---|---|
committer | Joris | 2020-01-19 16:31:55 +0100 |
commit | d20d7ceec2a14f79ebb06555a71d424aeaa90e54 (patch) | |
tree | 29778a8d3f39503c76669da060cdb4e0fe94e5a9 /server | |
parent | 5a13317efdaa2a8594a138b07ddd45eab40a8322 (diff) |
Show conf at server startup
Diffstat (limited to 'server')
-rw-r--r-- | server/src/Main.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/src/Main.hs b/server/src/Main.hs index 999f973..25fffb3 100644 --- a/server/src/Main.hs +++ b/server/src/Main.hs @@ -20,6 +20,7 @@ import Job.Daemon (runDaemons) main :: IO () main = do conf <- Conf.get "application.conf" + putStrLn . show $ conf _ <- runDaemons conf S.scotty (Conf.port conf) $ do |