mirror of
https://github.com/nikita-volkov/hasql.git
synced 2024-11-22 18:22:05 +03:00
Add password for CI
This commit is contained in:
parent
6270c62cee
commit
30c8d67e85
@ -25,7 +25,7 @@ main =
|
||||
host = "localhost"
|
||||
port = 5432
|
||||
user = "postgres"
|
||||
password = ""
|
||||
password = "postgres"
|
||||
database = "postgres"
|
||||
|
||||
-- * Sessions
|
||||
|
@ -16,7 +16,7 @@ with handler =
|
||||
host = "localhost"
|
||||
port = 5432
|
||||
user = "postgres"
|
||||
password = ""
|
||||
password = "postgres"
|
||||
database = "postgres"
|
||||
use connection =
|
||||
lift $ handler connection
|
||||
|
@ -32,7 +32,7 @@ session session =
|
||||
host = "localhost"
|
||||
port = 5432
|
||||
user = "postgres"
|
||||
password = ""
|
||||
password = "postgres"
|
||||
database = "postgres"
|
||||
use connection =
|
||||
ExceptT
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user