-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
56 lines (46 loc) · 998 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
package main
import (
"context"
"fmt"
"log"
"os"
"url-shortener/db"
"url-shortener/handlers"
"url-shortener/repository"
"github.com/gofiber/fiber/v2"
"github.com/joho/godotenv"
"go.uber.org/fx"
)
func fiberInstance(lc fx.Lifecycle, linkHandlers *handlers.LinkHandler) *fiber.App {
port := os.Getenv("PORT")
if port == "" {
port = "8080"
}
app := fiber.New()
app.Get("/*", linkHandlers.GetLink)
app.Post("/link", linkHandlers.CreateLink)
lc.Append(fx.Hook{
OnStart: func(context.Context) error {
fmt.Println("Starting fiber server on port:" + port)
go app.Listen("0.0.0.0:" + port)
return nil
},
OnStop: func(ctx context.Context) error {
return app.Shutdown()
},
})
return app
}
func main() {
err := godotenv.Load()
if err != nil && !os.IsNotExist(err) {
log.Fatal("Error loading .env file")
}
fx.New(
fx.Provide(
db.CreatePGConnection,
repository.NewLinkRepository,
handlers.NewLinkHandler),
fx.Invoke(fiberInstance),
).Run()
}