From e3c5b76237b34eb3a7d696ad69a32e9fc7c5dd50 Mon Sep 17 00:00:00 2001 From: Xevion Date: Thu, 14 Nov 2019 20:32:30 +0000 Subject: [PATCH] test message --- wsgi.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wsgi.py b/wsgi.py index 6362dd4..2957335 100644 --- a/wsgi.py +++ b/wsgi.py @@ -1,9 +1,11 @@ from app import app, db from app.models import User, Post, Search +# test message + @app.shell_context_processor def make_shell_context(): return {'db' : db, 'User' : User, 'Post' : Post, 'Search' : Search} if __name__ == "__main__": - app.run(host="0.0.0.0") \ No newline at end of file + app.run(host="0.0.0.0")