Add password for CI

This commit is contained in:
Nikita Volkov 2023-10-16 04:01:31 +03:00
parent 6270c62cee
commit 30c8d67e85
4 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ main =
host = "localhost"
port = 5432
user = "postgres"
password = ""
password = "postgres"
database = "postgres"
-- * Sessions

View File

@ -16,7 +16,7 @@ with handler =
host = "localhost"
port = 5432
user = "postgres"
password = ""
password = "postgres"
database = "postgres"
use connection =
lift $ handler connection

View File

@ -32,7 +32,7 @@ session session =
host = "localhost"
port = 5432
user = "postgres"
password = ""
password = "postgres"
database = "postgres"
use connection =
ExceptT

View File

@ -18,7 +18,7 @@ main =
$ Hasql.Connection.acquire connectionSettings
where
connectionSettings =
Hasql.Connection.settings "localhost" 5432 "postgres" "" "postgres"
Hasql.Connection.settings "localhost" 5432 "postgres" "postgres" "postgres"
use (connection1, connection2) =
do
beginVar <- newEmptyMVar