This commit is contained in:
Gregory Salaun 2023-12-07 22:32:19 +08:00
parent 1eb83fa185
commit 7362a1e5d8
2 changed files with 3 additions and 2 deletions

0
config/config.toml Normal file
View File

View File

@ -2,13 +2,14 @@ package config
import (
"errors"
"git.rouggy.com/rouggy/RaceBot/internal/domain"
"log"
"os"
"path"
"path/filepath"
"text/template"
"git.rouggy.com/rouggy/RaceBot/internal/domain"
"github.com/spf13/viper"
)
@ -75,7 +76,7 @@ func (c *AppConfig) defaults() {
Host: "127.0.0.1",
Port: "3000",
TMDbApiKey: "",
DbName: "racer.db",
DbName: "racer",
UploadFolder: "/home/rouggy/torrents/rtorrent/Race",
}
}