-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
59 lines (47 loc) · 968 Bytes
/
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
package main
import (
"fmt"
"log/slog"
"net/http"
"os"
"strconv"
"time"
"github.com/gin-gonic/gin"
"github.com/joho/godotenv"
"github.com/samber/lo"
)
// main
//
// @Description:
func main() {
if err := runServer(); err != nil {
slog.Error("Failed to start server!", "details", err.Error())
os.Exit(1)
}
}
// runServer
//
// @Description:
// @return error
func runServer() error {
if err := godotenv.Load(); err != nil {
return err
}
port, err := strconv.Atoi(lo.Ternary(os.Getenv("SERVER_PORT") == "",
"9000", os.Getenv("SERVER_PORT")))
if err != nil {
return err
}
router := gin.Default()
router.HTMLRender = &TemplRender{}
router.Static("/static", "./static")
loadHandlers(router)
server := &http.Server{
Addr: fmt.Sprintf(":%d", port),
ReadTimeout: 5 * time.Second,
WriteTimeout: 10 * time.Second,
Handler: router,
}
slog.Info("Starting server...", "port", port)
return server.ListenAndServe()
}