-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
69 lines (58 loc) · 1.38 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
67
68
69
package main
import (
"fampay-youtube/config"
"fampay-youtube/cron"
"fampay-youtube/routes"
"fmt"
"log"
"os"
"os/signal"
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/middleware/cors"
"github.com/gofiber/fiber/v2/middleware/logger"
"github.com/gofiber/template/html"
"github.com/joho/godotenv"
)
func main() {
if os.Getenv("APP_ENV") != "production" {
err := godotenv.Load()
if err != nil {
log.Fatal("Error loading .env file")
}
}
app := fiber.New(fiber.Config{
Views: html.New("./views", ".html"),
})
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
go func() {
<-c
fmt.Println("\nShutting down...")
app.Shutdown()
}()
app.Use(cors.New())
app.Use(logger.New())
config.ConnectDB()
setupRoutes(app)
cron.StartYoutubeFetch()
port := string(os.Getenv("PORT"))
if err := app.Listen(":" + port); err != nil {
log.Panic("Error app failed to start ", err)
}
}
func setupRoutes(app *fiber.App) {
app.Get("/", func(c *fiber.Ctx) error {
return c.Render("index", fiber.Map{
"Title": "Fampay YouTube",
})
})
api := app.Group("/api")
api.Get("/", func(c *fiber.Ctx) error {
return c.Status(fiber.StatusOK).JSON(fiber.Map{
"success": true,
"message": "You are at the root endpoint 😉",
"github_repo": "https://github.com/ayushpaharia/fampay-youtube",
})
})
routes.YoutubeRoutes(api.Group("/youtube"))
}