- Min of meer werkende chat client new stule

This commit is contained in:
Josako
2025-07-20 11:36:00 +02:00
parent b60600e9f6
commit ccb844c15c
24 changed files with 735 additions and 3230 deletions

View File

@@ -76,11 +76,13 @@ def create_app(config_file=None):
app.logger.info(f"EveAI Chat Client Started Successfully (PID: {os.getpid()})")
app.logger.info("-------------------------------------------------------------------------------------------------")
# @app.before_request
# def app_before_request():
# app.logger.debug(f'App before request: {request.path} ===== Method: {request.method} =====')
# app.logger.debug(f'Full URL: {request.url}')
# app.logger.debug(f'Endpoint: {request.endpoint}')
@app.before_request
def app_before_request():
if request.path.startswith('/healthz'):
pass
app.logger.debug(f'App before request: {request.path} ===== Method: {request.method} =====')
app.logger.debug(f'Full URL: {request.url}')
app.logger.debug(f'Endpoint: {request.endpoint}')
return app