2020-05-24 02:57:49 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
log "github.com/sirupsen/logrus"
|
2020-06-03 02:35:49 +02:00
|
|
|
|
2020-06-23 03:11:56 +02:00
|
|
|
"github.com/gabek/owncast/config"
|
|
|
|
"github.com/gabek/owncast/core"
|
|
|
|
"github.com/gabek/owncast/router"
|
|
|
|
)
|
2020-05-30 03:08:33 +02:00
|
|
|
|
2020-06-01 21:15:07 +02:00
|
|
|
func main() {
|
2020-06-18 22:09:54 +02:00
|
|
|
// logrus.SetReportCaller(true)
|
2020-06-23 03:11:56 +02:00
|
|
|
log.Println(core.GetVersion())
|
2020-06-11 22:33:20 +02:00
|
|
|
|
2020-06-23 03:11:56 +02:00
|
|
|
//TODO: potentially load the config from a flag like:
|
|
|
|
//configFile := flag.String("configFile", "config.yaml", "Config File full path. Defaults to current folder")
|
|
|
|
// flag.Parse()
|
2020-06-11 22:33:20 +02:00
|
|
|
|
2020-06-23 03:11:56 +02:00
|
|
|
if err := config.Load("config.yaml"); err != nil {
|
|
|
|
panic(err)
|
2020-06-02 09:27:54 +02:00
|
|
|
}
|
|
|
|
|
2020-06-23 03:11:56 +02:00
|
|
|
// starts the core
|
|
|
|
if err := core.Start(); err != nil {
|
|
|
|
log.Println("failed to start the core package")
|
|
|
|
panic(err)
|
2020-06-10 10:16:17 +02:00
|
|
|
}
|
2020-06-02 09:27:54 +02:00
|
|
|
|
2020-06-23 03:11:56 +02:00
|
|
|
if err := router.Start(); err != nil {
|
|
|
|
log.Println("failed to start/run the router")
|
|
|
|
panic(err)
|
2020-06-16 01:27:58 +02:00
|
|
|
}
|
2020-06-02 09:27:54 +02:00
|
|
|
}
|