mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Integrate public as bindata optionally (#293)
* Dropped unused codekit config * Integrated dynamic and static bindata for public * Ignore public bindata * Add a general generate make task * Integrated flexible public assets into web command * Updated vendoring, added all missiong govendor deps * Made the linter happy with the bindata and dynamic code * Moved public bindata definition to modules directory * Ignoring the new bindata path now * Updated to the new public modules import path * Updated public bindata command and drop the new prefix
This commit is contained in:
		
				
					committed by
					
						
						Lunny Xiao
					
				
			
			
				
	
			
			
			
						parent
						
							4680c349dd
						
					
				
				
					commit
					b6a95a8cb3
				
			@@ -21,6 +21,7 @@ import (
 | 
			
		||||
	"code.gitea.io/gitea/modules/bindata"
 | 
			
		||||
	"code.gitea.io/gitea/modules/context"
 | 
			
		||||
	"code.gitea.io/gitea/modules/log"
 | 
			
		||||
	"code.gitea.io/gitea/modules/public"
 | 
			
		||||
	"code.gitea.io/gitea/modules/setting"
 | 
			
		||||
	"code.gitea.io/gitea/modules/template"
 | 
			
		||||
	"code.gitea.io/gitea/routers"
 | 
			
		||||
@@ -125,9 +126,9 @@ func newMacaron() *macaron.Macaron {
 | 
			
		||||
	if setting.Protocol == setting.FCGI {
 | 
			
		||||
		m.SetURLPrefix(setting.AppSubURL)
 | 
			
		||||
	}
 | 
			
		||||
	m.Use(macaron.Static(
 | 
			
		||||
		path.Join(setting.StaticRootPath, "public"),
 | 
			
		||||
		macaron.StaticOptions{
 | 
			
		||||
	m.Use(public.Static(
 | 
			
		||||
		&public.Options{
 | 
			
		||||
			Directory:   path.Join(setting.StaticRootPath, "public"),
 | 
			
		||||
			SkipLogging: setting.DisableRouterLog,
 | 
			
		||||
		},
 | 
			
		||||
	))
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user