mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
Configuring "prod"
This commit is contained in:
parent
d23f5ca635
commit
4b09eeccc2
3 changed files with 10 additions and 6 deletions
10
main.go
10
main.go
|
@ -1,16 +1,18 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/astaxie/beego"
|
||||
_ "github.com/deluan/gosonic/conf"
|
||||
_ "github.com/deluan/gosonic/tasks"
|
||||
)
|
||||
|
||||
func main() {
|
||||
//beego.BConfig.Log.FileLineNum = false
|
||||
if beego.BConfig.RunMode == "dev" {
|
||||
beego.BConfig.WebConfig.DirectoryIndex = true
|
||||
beego.BConfig.WebConfig.StaticDir["/swagger"] = "swagger"
|
||||
fmt.Printf("\nGoSonic v%s (%s mode)\n\n", "0.1", beego.BConfig.RunMode)
|
||||
if beego.BConfig.RunMode == "prod" {
|
||||
beego.SetLevel(beego.LevelInformational)
|
||||
}
|
||||
beego.BConfig.Log.FileLineNum = false
|
||||
beego.Run()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue