import os class Config: SECRET_KEY = 'super secret key' SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.getcwd() + '/db.sqlite'