chore: Add deprecation message for GATUS_CONFIG_FILE

This commit is contained in:
TwiN 2023-01-09 23:24:20 -05:00
parent 4225d22369
commit 6bdd3c94fe

View File

@ -57,6 +57,7 @@ func loadConfiguration() (*config.Config, error) {
// Backwards compatibility
if len(configPath) == 0 {
configPath = os.Getenv("GATUS_CONFIG_FILE")
log.Println("WARNING: GATUS_CONFIG_FILE is deprecated. Please use GATUS_CONFIG_PATH instead.")
}
return config.LoadConfiguration(configPath)
}