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