InterroGen / config.py
yasserrmd's picture
Update config.py
ae2e84f verified
raw
history blame contribute delete
347 Bytes
import os
class Config:
SECRET_KEY = os.environ.get("SECRET_KEY") or "you-will-never-guess"
SQLALCHEMY_DATABASE_URI = os.environ.get("DATABASE_URL") or \
"sqlite:///" + os.path.join(os.path.abspath(os.path.dirname(__file__)), "app.db")
SQLALCHEMY_TRACK_MODIFICATIONS = False
GROQ_API_KEY = os.environ.get("GROQ_API_KEY")