This repository has been archived on 2022-09-21. You can view files and clone it, but cannot push or open issues or pull requests.
qbbuzzer/src/config.py
2020-10-12 20:03:26 -04:00

9 lines
157 B
Python

from dotenv import load_dotenv
import os
load_dotenv()
class Config(object):
SECRET_KEY = os.getenv('SECRET_KEY') or "debug-secret-key-for-testing-only"