2023-01-02 19:46:44 +00:00
|
|
|
|
2022-01-16 18:22:00 +00:00
|
|
|
from app import create_app
|
|
|
|
|
|
|
|
app = create_app()
|
|
|
|
|
2023-01-02 19:46:44 +00:00
|
|
|
|
2022-01-16 18:22:00 +00:00
|
|
|
@app.shell_context_processor
|
|
|
|
def make_shell_context():
|
|
|
|
"""Extend the Flask shell context."""
|
|
|
|
return {'app': app}
|
|
|
|
|
|
|
|
|
2023-01-02 19:46:44 +00:00
|
|
|
if __name__ == '__main__':
|
2022-01-16 18:22:00 +00:00
|
|
|
with app.app_context():
|
|
|
|
app.run(host='0.0.0.0')
|
2023-01-02 19:46:44 +00:00
|
|
|
else:
|
2022-02-16 19:33:12 +00:00
|
|
|
import logging
|
2022-02-16 19:39:55 +00:00
|
|
|
from logging.handlers import RotatingFileHandler
|
2022-02-16 19:33:12 +00:00
|
|
|
gunicorn_logger = logging.getLogger('gunicorn.error')
|
|
|
|
app.logger.handlers = gunicorn_logger.handlers
|
2022-12-17 04:50:43 +00:00
|
|
|
file_handler = RotatingFileHandler('logs/nexus_dashboard.log', maxBytes=1024 * 1024 * 100, backupCount=20)
|
2022-02-16 19:33:12 +00:00
|
|
|
formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
|
|
|
|
file_handler.setFormatter(formatter)
|
|
|
|
app.logger.addHandler(file_handler)
|
|
|
|
app.logger.setLevel(gunicorn_logger.level)
|