This commit is contained in:
Gregory Salaun 2023-12-07 22:37:30 +08:00
parent 7362a1e5d8
commit 81e5769bef
3 changed files with 6 additions and 3 deletions

View File

@ -2,13 +2,14 @@ package main
import (
"fmt"
"os"
"path/filepath"
"git.rouggy.com/rouggy/RaceBot/api"
"git.rouggy.com/rouggy/RaceBot/internal/config"
"git.rouggy.com/rouggy/RaceBot/internal/database"
"git.rouggy.com/rouggy/RaceBot/models"
"github.com/jinzhu/gorm"
"os"
"path/filepath"
)
func main() {
@ -38,6 +39,7 @@ func main() {
func SQLiteMigrate() {
db := database.GetDB()
db.LogMode(false)
if err := db.AutoMigrate(&models.Release{}, &models.Race{}).Error; err != nil {
panic("[Database] Failed migrating database: ")
}

View File

@ -2,6 +2,7 @@ package api
import (
"fmt"
"git.rouggy.com/rouggy/RaceBot/controllers"
"git.rouggy.com/rouggy/RaceBot/internal/domain"
"github.com/gin-gonic/gin"
@ -21,7 +22,7 @@ func (s *Server) Start(cfg *domain.Config) error {
gin.SetMode(gin.ReleaseMode)
r := gin.Default()
s.SetupRoutes(r)
fmt.Println("Server is running on port:", cfg.Port)
fmt.Println("[Server ]Server is running on port", cfg.Port)
err := r.Run(s.listenAddr)
if err != nil {
return err

BIN
racer.db Normal file

Binary file not shown.