diff options
| -rw-r--r-- | conf/conf.go | 2 | ||||
| -rw-r--r-- | main.go | 4 | ||||
| -rw-r--r-- | openbills.toml | 2 | 
3 files changed, 4 insertions, 4 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) @@ -38,10 +38,10 @@ import (  	"log"  ) -const OPENBILLS_VERSION = "v0.0.14" +const OPENBILLS_VERSION = "v0.1.0"  func init() { -	if viper.GetBool("production_mode") { +	if !viper.GetBool("debug_mode") {  		gin.SetMode(gin.ReleaseMode)  	}  } diff --git a/openbills.toml b/openbills.toml index dd37e22..f10f666 100644 --- a/openbills.toml +++ b/openbills.toml @@ -1,5 +1,5 @@  port = 8765 -production_mode = false +debug_mode = true  [database]  username = "openbills"  |