tekinfo-bot-hf / app /config.py
alvinfadli's picture
initial commit
a3f9c29
raw
history blame contribute delete
220 Bytes
import os
from dotenv import load_dotenv
load_dotenv()
class Config:
SUPABASE_URL = os.getenv('SUPABASE_URL')
SUPABASE_KEY = os.getenv('SUPABASE_KEY')
REPLICATE_API_TOKEN = os.getenv('REPLICATE_API_TOKEN')