quintodrome/main.go

26 lines
556 B
Go
Raw Normal View History

2016-02-23 14:41:35 -09:00
package main
import (
"fmt"
2020-01-23 15:44:08 -09:00
"github.com/deluan/navidrome/conf"
"github.com/deluan/navidrome/consts"
"github.com/deluan/navidrome/db"
2016-02-23 14:41:35 -09:00
)
func main() {
2020-03-21 21:13:55 -08:00
println(consts.Banner())
2020-01-20 13:35:04 -09:00
conf.Load()
db.EnsureLatestVersion()
subsonic, err := CreateSubsonicAPIRouter()
if err != nil {
panic(fmt.Sprintf("Could not create the Subsonic API router. Aborting! err=%v", err))
}
2020-01-23 21:29:31 -09:00
a := CreateServer(conf.Server.MusicFolder)
2020-04-03 13:50:42 -08:00
a.MountRouter(consts.URLPathSubsonicAPI, subsonic)
a.MountRouter(consts.URLPathUI, CreateAppRouter())
2020-01-23 21:29:31 -09:00
a.Run(":" + conf.Server.Port)
2016-02-23 14:41:35 -09:00
}