hasql/testing-kit/Hasql/TestingKit/Constants.hs

14 lines
339 B
Haskell
Raw Permalink Normal View History

2024-04-22 07:32:56 +03:00
module Hasql.TestingKit.Constants where
2024-04-20 13:59:11 +03:00
import Hasql.Connection qualified as Connection
localConnectionSettings :: Connection.Settings
localConnectionSettings =
Connection.settings host port user password database
where
host = "localhost"
port = 5432
user = "postgres"
password = "postgres"
database = "postgres"