-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
51 lines (41 loc) · 962 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
package main
import (
"fmt"
"os"
"time"
"api-gym-on-go/src/config/database"
"api-gym-on-go/src/config/env"
"api-gym-on-go/src/modules/auth"
"api-gym-on-go/src/modules/checkins"
"api-gym-on-go/src/modules/gyms"
"api-gym-on-go/src/modules/users"
"github.com/gofiber/fiber/v2/middleware/logger"
"github.com/gofiber/fiber/v2"
)
func main() {
// Load environment variables
env.LoadEnv()
// Startup services
app := fiber.New(fiber.Config{
ReadTimeout: 10 * time.Second,
WriteTimeout: 10 * time.Second,
IdleTimeout: 30 * time.Second,
})
app.Use(logger.New())
db := database.SetupDatabase(env.DatabaseURL)
// Register modules
auth.Register(app, db)
users.Register(app, db)
gyms.Register(app, db)
checkins.Register(app, db)
// Start server
port := 3000
if env.Port != 0 {
port = env.Port
}
err := app.Listen(fmt.Sprintf(":%d", port))
if err != nil {
fmt.Printf("Erro ao iniciar o servidor: %v\n", err)
os.Exit(1)
}
}