We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a260601 commit d8e2b59Copy full SHA for d8e2b59
conditional/__init__.py
@@ -38,6 +38,16 @@
38
39
logger.info('conditional started')
40
41
+# pylint: disable=C0413
42
+
43
+from db.models import EvalSettings
44
45
+if EvalSettings.query.first() is None:
46
+ logger.info("Generating Initial Site Settings")
47
+ db.add(EvalSettings())
48
+ db.flush()
49
+ db.commit()
50
51
52
@app.route('/<path:path>')
53
def static_proxy(path):
0 commit comments