Removed unneeded config field

This commit is contained in:
iko 2020-02-24 17:20:28 +03:00
parent 08b0dd20f4
commit b7444eb432

View File

@ -30,7 +30,6 @@ data Config
databseUrl :: !ByteString, databseUrl :: !ByteString,
baseSiteUrl :: !Text, baseSiteUrl :: !Text,
cfgDockerUrl :: !String, cfgDockerUrl :: !String,
cfgDockerFile :: !FilePath,
logSeverity :: !Severity, logSeverity :: !Severity,
builderCount :: !Int, builderCount :: !Int,
githubContext :: !Text githubContext :: !Text
@ -67,7 +66,6 @@ defaultConfig =
databseUrl = "host=localhost port=5432 dbname=sc-build connect_timeout=10", databseUrl = "host=localhost port=5432 dbname=sc-build connect_timeout=10",
baseSiteUrl = "http://localhost:8080", baseSiteUrl = "http://localhost:8080",
cfgDockerUrl = "http://localhost:1234", cfgDockerUrl = "http://localhost:1234",
cfgDockerFile = "TmpDockerfile",
logSeverity = Info, logSeverity = Info,
builderCount = 2, builderCount = 2,
githubContext = "MY CI NAME" githubContext = "MY CI NAME"