graphql-engine/cli/internal/testutil/vars.go
Aravind K P 7638d1832a cli: add support for bigquery
GitOrigin-RevId: 8d479cbd056ee839b11ae24557085573b3e5b5ba
2021-04-19 07:06:18 +00:00

31 lines
551 B
Go

package testutil
import (
"fmt"
"os"
"runtime"
)
// this can be overridden by ldflags
var (
HasuraVersion = "main-10df859cf"
DockerSwitchIP = func() string {
switch runtime.GOOS {
case "darwin", "windows":
return "host.docker.internal"
}
return "172.17.0.1"
}()
Hostname = "localhost"
BaseURL = fmt.Sprintf("http://%s", Hostname)
MSSQLPassword = "MSSQLp@ssw0rd"
SkipDockerTests = func() bool {
if len(os.Getenv("CI")) > 0 {
// skip in CI
return true
}
return false
}()
CLIBinaryPath = "hasura"
)