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/config/config.go
2023-04-15 16:23:34 +07:00

39 lines
726 B
Go

package config
import (
"log"
"os"
"github.com/joho/godotenv"
)
var DownloadFolder string
var HTTPPort string
var DBName string
var TMDbApiKey string
func Load() {
if err := godotenv.Load(); err != nil {
log.Println("Error loading .env file ...")
log.Println("Using default configuration")
}
if DownloadFolder = os.Getenv("DOWNLOAD_FOLDER"); DownloadFolder == "" {
DownloadFolder = "/home/rouggy/torrents/rtorrent/Race"
}
if HTTPPort = os.Getenv("HTTP_PORT"); HTTPPort == "" {
HTTPPort = "9000"
}
if DBName = os.Getenv("DB_NAME"); DBName == "" {
DBName = "racerdb"
}
if TMDbApiKey = os.Getenv("TMDB_APIKEY"); TMDbApiKey == "" {
log.Println("TMDb Api Key cannot be empty...")
os.Exit(1)
}
}