flask / config.py
Arafath10's picture
Update config.py
f36cef9 verified
raw
history blame
291 Bytes
import os
class Config(object):
DEBUG = True
TESTING = False
class DevelopmentConfig(Config):
SECRET_KEY = "nasma"
OPENAI_KEY = os.environ["open_key"]
config = {
'development': DevelopmentConfig,
'testing': DevelopmentConfig,
'production': DevelopmentConfig
}