Revert "Revert "Revert "feat: Support config files with viper"" (#4693)" (#4695)

This reverts commit 372fb1f345.
This commit is contained in:
Garrett Delfosse
2022-10-21 17:07:38 -04:00
committed by GitHub
parent 372fb1f345
commit e8537067ef
35 changed files with 1089 additions and 921 deletions

View File

@ -6,10 +6,6 @@ import (
"path/filepath"
)
const (
FlagName = "global-config"
)
// Root represents the configuration directory.
type Root string
@ -46,10 +42,6 @@ func (r Root) PostgresPort() File {
return File(filepath.Join(r.PostgresPath(), "port"))
}
func (r Root) DeploymentConfigPath() string {
return filepath.Join(string(r), "server.yaml")
}
// File provides convenience methods for interacting with *os.File.
type File string