This commit is contained in:
Gregory Salaun 2023-04-15 18:20:06 +07:00
parent 2ed6c81827
commit 4ba1f9aeac
4 changed files with 18 additions and 16 deletions

View File

@ -20,16 +20,16 @@ func NewServer(listenAddr string) *Server {
func (s *Server) Start() error { func (s *Server) Start() error {
gin.SetMode(gin.ReleaseMode) gin.SetMode(gin.ReleaseMode)
r := gin.Default() r := gin.Default()
SetupRoutes(r) s.SetupRoutes(r)
fmt.Println("Server is running on port:", config.HTTPPort) fmt.Println("Server is running on port:", config.HTTPPort)
err := r.Run(":" + config.HTTPPort) err := r.Run(s.listenAddr)
if err != nil { if err != nil {
return err return err
} }
return nil return nil
} }
func SetupRoutes(app *gin.Engine) { func (s *Server) SetupRoutes(app *gin.Engine) {
api := app.Group("/api") api := app.Group("/api")
v1 := api.Group("/v1") v1 := api.Group("/v1")

View File

@ -17,4 +17,5 @@ func SQLiteDBConnect() {
fmt.Println("[Database] Database successfully connected") fmt.Println("[Database] Database successfully connected")
//If set true then print all executed queries to the console //If set true then print all executed queries to the console
db.LogMode(true) db.LogMode(true)
} }

27
main.go
View File

@ -2,11 +2,11 @@ package main
import ( import (
"fmt" "fmt"
"git.rouggy.com/rouggy/RaceBot/api"
"git.rouggy.com/rouggy/RaceBot/config" "git.rouggy.com/rouggy/RaceBot/config"
"git.rouggy.com/rouggy/RaceBot/database" "git.rouggy.com/rouggy/RaceBot/database"
"git.rouggy.com/rouggy/RaceBot/models" "git.rouggy.com/rouggy/RaceBot/models"
"git.rouggy.com/rouggy/RaceBot/router" "github.com/jinzhu/gorm"
"github.com/gin-gonic/gin"
) )
func main() { func main() {
@ -14,19 +14,20 @@ func main() {
config.Load() config.Load()
database.SQLiteDBConnect() database.SQLiteDBConnect()
defer database.GetDB().Close() defer func(db *gorm.DB) {
err := db.Close()
if err != nil {
fmt.Println("Could not close the database")
}
}(database.GetDB())
SQLiteMigrate() SQLiteMigrate()
ServeApplication()
}
func ServeApplication() {
gin.SetMode(gin.ReleaseMode)
r := gin.Default()
router.SetupRoutes(r)
fmt.Println("Server is running on port:", config.HTTPPort)
r.Run(":" + config.HTTPPort)
server := api.NewServer(":" + config.HTTPPort)
err := server.Start()
if err != nil {
fmt.Println("Could not start server")
}
} }
func SQLiteMigrate() { func SQLiteMigrate() {

BIN
racer.db

Binary file not shown.