// GetPostgreSQLAddress return the Postgres address
addr := os.Getenv(postgresSeedsEnv)
if addr == "" {
addr = GetLocalhostIP()
}
return addr
}
// GetPostgreSQLPort return the Postgres port
port := os.Getenv(postgresPortEnv)
if port == "" {
return postgresDefaultPort
}
p, err := strconv.Atoi(port)
if err != nil {