revery wsgi file for now, need to replace gunicorn

for a cross-platform solution
This commit is contained in:
aronwk-aaron 2023-01-02 13:46:44 -06:00
parent 8012780eba
commit 4a58e963a5

16
wsgi.py
View File

@ -1,23 +1,19 @@
from sys import platform
from app import create_app
app = create_app()
@app.shell_context_processor
def make_shell_context():
"""Extend the Flask shell context."""
return {'app': app}
running_directly = __name__ == "wsgi" or __name__ == "__main__"
running_under_gunicorn = not running_directly and 'gunicorn' in __name__ and 'linux' in platform
# Configure development running
if running_directly:
if __name__ == '__main__':
with app.app_context():
app.run(host='0.0.0.0')
# Configure production running
if running_under_gunicorn:
else:
import logging
from logging.handlers import RotatingFileHandler
gunicorn_logger = logging.getLogger('gunicorn.error')
@ -27,7 +23,3 @@ if running_under_gunicorn:
file_handler.setFormatter(formatter)
app.logger.addHandler(file_handler)
app.logger.setLevel(gunicorn_logger.level)
# Error out if nothing has been setup
if not running_directly and not running_under_gunicorn:
raise RuntimeError('Unsupported WSGI server')