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")