packages feed

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

module Hasql.TestingKit.Constants where

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"