aboutsummaryrefslogtreecommitdiff
path: root/conf/conf.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2023-09-03 18:34:56 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2023-09-03 18:34:56 +0530
commit020fc720379255832aad369dfc2dece9a1cf4699 (patch)
tree25e3f1ee3349b0d6f536d91a76a6d9a334bea03d /conf/conf.go
parent776522d8741752832981b17ec81deb11a298ef57 (diff)
added pretty startup messages
Diffstat (limited to 'conf/conf.go')
-rw-r--r--conf/conf.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/conf/conf.go b/conf/conf.go
index 9c3d328..26a5d90 100644
--- a/conf/conf.go
+++ b/conf/conf.go
@@ -25,7 +25,6 @@ import (
// TODO: validate config
func init() {
viper.SetConfigName("openbills")
- viper.SetConfigType("toml")
viper.AddConfigPath("/etc/openbills")
viper.AddConfigPath(".")
@@ -38,6 +37,7 @@ func init() {
}
viper.SetDefault("port", "8765")
+ viper.SetDefault("production_mode", false)
viper.SetDefault("security.min_password_length", 12)
viper.SetDefault("security.max_password_length", 72)
@@ -52,4 +52,6 @@ func init() {
viper.SetDefault("username.max_username_length", 20)
viper.SetDefault("cryptography.password_hashing_cost", 14)
+
+ log.Printf("\x1b[46m\x1b[30m[info]\x1b[0m Loaded Config File \"%s\"\n", viper.ConfigFileUsed())
}