module Hasql.TestingUtils.Constants where import Hasql.Connection qualified as Connection localConnectionSettings :: Connection.Settings localConnectionSettings :: ByteString localConnectionSettings = ByteString -> Word16 -> ByteString -> ByteString -> ByteString -> ByteString Connection.settings ByteString forall {a}. IsString a => a host Word16 forall {a}. Num a => a port ByteString forall {a}. IsString a => a user ByteString forall {a}. IsString a => a password ByteString forall {a}. IsString a => a database where host :: a host = a "localhost" port :: a port = a 5432 user :: a user = a "postgres" password :: a password = a "postgres" database :: a database = a "postgres"