api/main.go

61 lines
1.2 KiB
Go
Raw Normal View History

2018-06-10 09:11:41 +00:00
package main
import (
2018-07-25 14:24:46 +00:00
"code.vikunja.io/api/models"
"code.vikunja.io/api/routes"
2018-06-10 09:11:41 +00:00
"context"
"github.com/spf13/viper"
2018-06-10 09:11:41 +00:00
"os"
"os/signal"
"time"
)
// Version sets the version to be printed to the user. Gets overwritten by "make release" or "make build" with last git commit or tag.
2018-07-14 15:34:59 +00:00
var Version = "0.1"
2018-06-10 09:11:41 +00:00
func main() {
2018-09-19 06:35:53 +00:00
// Init logging
models.InitLogger()
2018-06-10 09:11:41 +00:00
// Init Config
err := models.InitConfig()
2018-06-10 09:11:41 +00:00
if err != nil {
2018-09-19 06:35:53 +00:00
models.Log.Error(err.Error())
2018-06-10 09:11:41 +00:00
os.Exit(1)
}
// Set Engine
err = models.SetEngine()
if err != nil {
2018-09-19 06:35:53 +00:00
models.Log.Error(err.Error())
2018-06-10 09:11:41 +00:00
os.Exit(1)
}
// Version notification
2018-09-19 06:35:53 +00:00
models.Log.Infof("Vikunja version %s", Version)
2018-06-10 09:11:41 +00:00
// Start the webserver
e := routes.NewEcho()
routes.RegisterRoutes(e)
// Start server
go func() {
if err := e.Start(viper.GetString("service.interface")); err != nil {
2018-06-10 09:34:59 +00:00
e.Logger.Info("shutting down...")
2018-06-10 09:11:41 +00:00
}
}()
// Wait for interrupt signal to gracefully shutdown the server with
// a timeout of 10 seconds.
quit := make(chan os.Signal)
signal.Notify(quit, os.Interrupt)
<-quit
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
2018-09-19 06:35:53 +00:00
models.Log.Infof("Sutting down...")
2018-06-10 09:11:41 +00:00
if err := e.Shutdown(ctx); err != nil {
e.Logger.Fatal(err)
}
}