fix db path
This commit is contained in:
@@ -5,6 +5,7 @@ import (
|
||||
"log"
|
||||
"opencatd-open/internal/model"
|
||||
"opencatd-open/pkg/config"
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
// "gocloud.dev/mysql"
|
||||
@@ -77,7 +78,13 @@ func InitDB(cfg *config.Config) (*gorm.DB, error) {
|
||||
|
||||
// initSQLite 初始化 SQLite 数据库
|
||||
func initSQLite() (*gorm.DB, error) {
|
||||
db, err := gorm.Open(sqlite.Open("openteam.db"), &gorm.Config{})
|
||||
if _, err := os.Stat("db"); os.IsNotExist(err) {
|
||||
errDir := os.MkdirAll("db", 0755)
|
||||
if errDir != nil {
|
||||
log.Fatalln("Error creating directory:", err)
|
||||
}
|
||||
}
|
||||
db, err := gorm.Open(sqlite.Open("./db/openteam.db"), &gorm.Config{})
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to connect to SQLite: %v", err)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user