Files
MediaManager-maxdorninger-1/media_manager/config.py
2025-05-29 15:36:35 +02:00

15 lines
345 B
Python

from pathlib import Path
from pydantic import AnyHttpUrl
from pydantic_settings import BaseSettings
class BasicConfig(BaseSettings):
image_directory: Path = "./data"
tv_directory: Path = "./tv"
movie_directory: Path = "./movie"
torrent_directory: Path = "./torrent"
FRONTEND_URL: AnyHttpUrl
DEVELOPMENT: bool = False