gmail-agent / app /config.py
samvish's picture
Initial commit
bbfb383
raw
history blame contribute delete
241 Bytes
# app/config.py
import os
from dotenv import load_dotenv
load_dotenv()
class Config:
GOOGLE_API_KEY = os.getenv("GOOGLE_API_KEY")
COMPOSIO_API_KEY = os.getenv("COMPOSIO_API_KEY")
ALLOWED_ORIGINS = ["*"] # Adjust for production