Spaces:
Runtime error
Runtime error
File size: 241 Bytes
bbfb383 |
1 2 3 4 5 6 7 8 9 10 |
# 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 |