-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
43 lines (34 loc) · 944 Bytes
/
main.go
File metadata and controls
43 lines (34 loc) · 944 Bytes
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
package main
import (
"belajar/config"
"belajar/docs"
"belajar/routes"
"belajar/utils"
"log"
"github.com/joho/godotenv"
)
// @contact.name API Support
// @contact.url http://www.swagger.io/support
// @contact.email support@swagger.io
// @license.name Apache 2.0
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
// @termsOfService http://swagger.io/terms/
func main() {
environment := utils.Getenv("ENVIRONMENT", "development")
if environment == "development" {
err := godotenv.Load()
if err != nil {
log.Fatal("Error loading env file")
}
}
docs.SwaggerInfo.Title = "API Belajar Shop"
docs.SwaggerInfo.Description = "Ini belajar API backend"
docs.SwaggerInfo.Host = "localhost:8080"
docs.SwaggerInfo.Schemes = []string{"http", "https"}
docs.SwaggerInfo.Version = "0.5"
db := config.ConnectDatabase()
sqlDb, _ := db.DB()
defer sqlDb.Close()
r := routes.SetupRouter(db)
r.Run("localhost:8080")
}