better sanity checking

This commit is contained in:
Aaron Kimbre 2022-03-14 18:42:49 -05:00
parent 4d62e70810
commit 1566df65cb

View File

@ -193,7 +193,8 @@ def register_settings(app):
'APP_DATABASE_URI',
app.config['APP_DATABASE_URI']
)
if app.config['SECRET_KEY'] == "" or "<database>" in app.config['APP_DATABASE_URI']:
if app.config['SECRET_KEY'] == "" or \
app.config['APP_DATABASE_URI'] == "mysql+pymysql://<username>:<password>@<host>:<port>/<database>":
raise("No database uri or secret Key")
# try to get overides, otherwise just use what we have already
app.config['USER_ENABLE_REGISTER'] = os.getenv(