Flip RUN_MODE detection in router (#13768)
Missed that part in https://github.com/go-gitea/gitea/pull/13765. It's already in the 1.13 backport so this forward-ports that change again.
This commit is contained in:
		
					parent
					
						
							
								bc455ed257
							
						
					
				
			
			
				commit
				
					
						14e8ef9ecb
					
				
			
		
					 1 changed files with 6 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -43,13 +43,15 @@ import (
 | 
			
		|||
)
 | 
			
		||||
 | 
			
		||||
func checkRunMode() {
 | 
			
		||||
	switch setting.Cfg.Section("").Key("RUN_MODE").String() {
 | 
			
		||||
	case "prod":
 | 
			
		||||
	switch setting.RunMode {
 | 
			
		||||
	case "dev":
 | 
			
		||||
		git.Debug = true
 | 
			
		||||
	case "test":
 | 
			
		||||
		git.Debug = true
 | 
			
		||||
	default:
 | 
			
		||||
		macaron.Env = macaron.PROD
 | 
			
		||||
		macaron.ColorLog = false
 | 
			
		||||
		setting.ProdMode = true
 | 
			
		||||
	default:
 | 
			
		||||
		git.Debug = true
 | 
			
		||||
	}
 | 
			
		||||
	log.Info("Run Mode: %s", strings.Title(macaron.Env))
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue