diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-03 00:09:26 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-03 00:09:26 +0530 |
commit | 9df37d57e454c49b2c55418ad53b6d49a2be2589 (patch) | |
tree | 0ef8e8c56454c9e9e72ce1a7ab8dfbefdde9a0c2 /conf/conf.go | |
parent | dc2ed72c3db40684f76acf9b5e71597d6da8fbbd (diff) |
replaced production_mode with debug_mode in config filev0.1.0
Diffstat (limited to 'conf/conf.go')
-rw-r--r-- | conf/conf.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/conf.go b/conf/conf.go index 8afe1f4..7531e4f 100644 --- a/conf/conf.go +++ b/conf/conf.go @@ -84,7 +84,7 @@ func init() { } viper.SetDefault("port", "8765") - viper.SetDefault("production_mode", false) + viper.SetDefault("debug_mode", false) viper.SetDefault("security.min_password_length", 12) viper.SetDefault("security.max_password_length", 72) |