config.go: use a COMMENTO_ prefix
This commit is contained in:
parent
7c75792622
commit
e80617d41c
@ -23,8 +23,10 @@ func parseConfig() error {
|
||||
}
|
||||
|
||||
for key, value := range defaults {
|
||||
if os.Getenv(key) == "" {
|
||||
if os.Getenv("COMMENTO_" + key) == "" {
|
||||
os.Setenv(key, value)
|
||||
} else {
|
||||
os.Setenv(key, os.Getenv("COMMENTO_" + key))
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user