2022-08-11 15:21:32 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"git.coopgo.io/coopgo-platform/groups-management/grpcapi"
|
|
|
|
"git.coopgo.io/coopgo-platform/groups-management/handlers"
|
|
|
|
"git.coopgo.io/coopgo-platform/groups-management/storage"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
cfg, err := ReadConfig()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
service_name = cfg.GetString("name")
|
|
|
|
grpc_enable = cfg.GetBool("services.grpc.enable")
|
2023-03-10 12:28:56 +00:00
|
|
|
dev_env = cfg.GetBool("dev_env")
|
2022-08-11 15:21:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
storage, err := storage.NewStorage(cfg)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
handler := handlers.NewHandler(cfg, storage)
|
|
|
|
|
|
|
|
fmt.Println("Running", service_name, ":")
|
2023-03-10 12:28:56 +00:00
|
|
|
if dev_env {
|
|
|
|
fmt.Printf("\033]0;%s\007", service_name)
|
|
|
|
}
|
2022-08-11 15:21:32 +00:00
|
|
|
|
|
|
|
failed := make(chan error)
|
|
|
|
|
|
|
|
if grpc_enable {
|
|
|
|
go grpcapi.Run(failed, cfg, handler)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Terminate if one of the services fails
|
|
|
|
|
|
|
|
err = <-failed
|
|
|
|
|
|
|
|
fmt.Println("Terminating :", err)
|
|
|
|
}
|