-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.go
66 lines (48 loc) · 1.16 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package main
import (
"database/sql"
"fmt"
"os"
"os/signal"
"syscall"
"github.com/udaya2899/go-gin-starter/configuration"
"github.com/udaya2899/go-gin-starter/connection"
"github.com/udaya2899/go-gin-starter/server"
"github.com/udaya2899/go-gin-starter/storage"
log "github.com/sirupsen/logrus"
)
func init() {
log.SetOutput(os.Stdout)
}
func main() {
log.Infof("Starting server...")
if err := run(); err != nil {
log.Fatalf("Cannot start server, err: %v", err)
}
}
func run() error {
config := configuration.New()
db, err := connection.NewConnection(config.Database)
if err != nil {
return err
}
repository := storage.New(db)
go handleShutdown(db)
s := server.New(repository)
if err = s.Run(fmt.Sprintf(":%d", config.Server.Port)); err != nil {
return err
}
return nil
}
func handleShutdown(db *sql.DB) {
c := make(chan os.Signal)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
<-c
// handle ctrl+c event here
// for example, close database
log.Warn("Closing DB connection before complete shutdown")
if err := db.Close(); err != nil {
log.Errorf("error while closing the connection to the database: %v", err)
}
os.Exit(0)
}