import os from dotenv import load_dotenv load_dotenv() # Reddit API Credentials REDDIT_CLIENT_ID = os.getenv("REDDIT_CLIENT_ID") REDDIT_CLIENT_SECRET = os.getenv("REDDIT_CLIENT_SECRET") REDDIT_USER_AGENT = os.getenv("REDDIT_USER_AGENT", "RedditVideoBot/0.1 by /u/YourUsername") # Groq API Key GROQ_API_KEY = os.getenv("GROQ_API_KEY") # Path Settings BASE_DIR = os.path.dirname(os.path.abspath(__file__)) ASSETS_DIR = os.path.join(BASE_DIR, "assets") OUTPUT_DIR = os.path.join(BASE_DIR, "output") BACKGROUND_VIDEOS_DIR = os.path.join(ASSETS_DIR, "background_videos") # Video Settings VIDEO_WIDTH = 1080 VIDEO_HEIGHT = 1920 FONT_PATH = os.path.join(ASSETS_DIR, "fonts", "BoldFont.ttf")