mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Rename project to Navidrome
This commit is contained in:
parent
aaefc6bfc7
commit
bee55c04c8
93 changed files with 210 additions and 203 deletions
|
@ -3,14 +3,15 @@ package conf
|
|||
import (
|
||||
"os"
|
||||
|
||||
"github.com/cloudsonic/sonic-server/log"
|
||||
"github.com/deluan/navidrome/consts"
|
||||
"github.com/deluan/navidrome/log"
|
||||
"github.com/koding/multiconfig"
|
||||
)
|
||||
|
||||
type sonic struct {
|
||||
Port string `default:"4533"`
|
||||
MusicFolder string `default:"./music"`
|
||||
DbPath string `default:"./data/cloudsonic.db"`
|
||||
DbPath string `default:"./data/navidrome.db"`
|
||||
LogLevel string `default:"info"`
|
||||
|
||||
IgnoredArticles string `default:"The El La Los Las Le Les Os As O A"`
|
||||
|
@ -62,8 +63,8 @@ func LoadFromFile(tomlFile string) {
|
|||
}
|
||||
|
||||
func LoadFromLocalFile() {
|
||||
if _, err := os.Stat("./sonic.toml"); err == nil {
|
||||
LoadFromFile("./sonic.toml")
|
||||
if _, err := os.Stat(consts.LocalConfigFile); err == nil {
|
||||
LoadFromFile(consts.LocalConfigFile)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue