This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
RaceBot/main.go
2023-04-16 12:21:01 +07:00

46 lines
982 B
Go

package main
import (
"fmt"
"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() {
// Get app path
pwd, err := os.Getwd()
configPath := filepath.Join(pwd, "config")
cfg := config.New(configPath)
database.SQLiteDBConnect(cfg.Config)
defer func(db *gorm.DB) {
err := db.Close()
if err != nil {
fmt.Println("Could not close the database")
}
}(database.GetDB())
SQLiteMigrate()
server := api.NewServer(cfg.Config.Host + ":" + cfg.Config.Port)
server.Start(cfg.Config)
if err != nil {
fmt.Println("Could not start server")
}
}
func SQLiteMigrate() {
db := database.GetDB()
if err := db.AutoMigrate(&models.Release{}, &models.Race{}).Error; err != nil {
panic("[Database] Failed migrating database: ")
}
fmt.Println("[Database] Database successfully migrated")
}