Quellcode durchsuchen

Making AppDataPath customizable.

Rodrigo Saboya vor 9 Jahren
Ursprung
Commit
3cacec9163
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 2 1
      modules/setting/setting.go

+ 2 - 1
modules/setting/setting.go

@@ -54,7 +54,7 @@ var (
 	AppSubUrl      string
 	AppSubUrlDepth int // Number of slashes
 	AppPath        string
-	AppDataPath    = "data"
+	AppDataPath    string
 
 	// Server settings
 	Protocol           Scheme
@@ -334,6 +334,7 @@ func NewContext() {
 	OfflineMode = sec.Key("OFFLINE_MODE").MustBool()
 	DisableRouterLog = sec.Key("DISABLE_ROUTER_LOG").MustBool()
 	StaticRootPath = sec.Key("STATIC_ROOT_PATH").MustString(workDir)
+	AppDataPath = sec.Key("APP_DATA_PATH").MustString("data")
 	EnableGzip = sec.Key("ENABLE_GZIP").MustBool()
 
 	switch sec.Key("LANDING_PAGE").MustString("home") {