1 {-# LANGUAGE OverloadedStrings #-}
3 module Gargantext.Database.Private where
5 import qualified Database.PostgreSQL.Simple as PGS
7 -- TODO add a reader Monad here
8 -- read this in the init file
9 infoGargandb :: PGS.ConnectInfo
10 infoGargandb = PGS.ConnectInfo { PGS.connectHost = "127.0.0.1"
11 , PGS.connectPort = 5432
12 , PGS.connectUser = "gargantua"
13 , PGS.connectPassword = "C8kdcUrAQy66U"
14 , PGS.connectDatabase = "gargandb" }