Fix port type

This commit is contained in:
1computer1 2019-07-09 08:37:23 -04:00
parent 6a53f3891b
commit a1b88e24b8
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ let Config : Type =
, buildConcurrently : Bool -- Whether to build images concurrently
, prepareContainers : Bool -- Whether to setup all containers on startup
, cleanupInterval : Natural -- The interval in minutes to kill containers periodically
, port : Integer -- Port to run on
, port : Natural -- Port to run on
}
-- Write your config here!

View File

@ -46,7 +46,7 @@ data MyriadConfig = MyriadConfig
, buildConcurrently :: Bool
, prepareContainers :: Bool
, cleanupInterval :: Natural
, port :: Integer
, port :: Natural
} deriving (Show, Generic)
instance Interpret MyriadConfig