This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Flask configuration variables.""" | |
from os import environ, path | |
from dotenv import load_dotenv | |
basedir = path.abspath(path.dirname(__file__)) | |
load_dotenv(path.join(basedir, ".env")) | |
class Config: |
NewerOlder