mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Rename env vars prefix to ND_
This commit is contained in:
parent
d48ddacaba
commit
bff6f3a4bd
18 changed files with 42 additions and 42 deletions
6
main.go
6
main.go
|
@ -8,12 +8,12 @@ import (
|
|||
func main() {
|
||||
conf.Load()
|
||||
|
||||
if !conf.Sonic.DevDisableBanner {
|
||||
if !conf.Server.DevDisableBanner {
|
||||
server.ShowBanner()
|
||||
}
|
||||
|
||||
a := CreateServer(conf.Sonic.MusicFolder)
|
||||
a := CreateServer(conf.Server.MusicFolder)
|
||||
a.MountRouter("/rest", CreateSubsonicAPIRouter())
|
||||
a.MountRouter("/app", CreateAppRouter("/app"))
|
||||
a.Run(":" + conf.Sonic.Port)
|
||||
a.Run(":" + conf.Server.Port)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue