From f64f37ba5f1c4702c73bd5f825f6cdf17cd9e493 Mon Sep 17 00:00:00 2001
From: zhangqian <zhangqian@123.com>
Date: 星期四, 05 十二月 2024 15:13:41 +0800
Subject: [PATCH] 配置ip取环境变量的
---
app/config/config.py | 29 +++++++++++++++++++++++------
1 files changed, 23 insertions(+), 6 deletions(-)
diff --git a/app/config/config.py b/app/config/config.py
index e3d254f..ad703ba 100644
--- a/app/config/config.py
+++ b/app/config/config.py
@@ -1,19 +1,36 @@
+import os
from pathlib import Path
import yaml
class Settings:
secret_key: str = ''
- bisheng_base_url: str = ''
- bisheng_websocket_url: str = ''
- ragflow_base_url: str = ''
+ sgb_base_url: str = ''
+ sgb_websocket_url: str = ''
+ fwr_base_url: str = ''
database_url: str = ''
+ sgb_db_url: str = ''
+ fwr_db_url: str = ''
+ fetch_sgb_agent: str = ''
+ fetch_fwr_agent: str = ''
PUBLIC_KEY: str
PRIVATE_KEY: str
- bisheng_agent_id: str
- ragflow_agent_id: str
- ragflow_chat_id: str
+ PASSWORD_KEY: str
+ basic_base_url: str = ''
+ basic_paper_url: str = ''
+ dify_base_url: str = ''
+ dify_api_token: str = ''
+ dify_workflow_clean: str = ''
+ dify_workflow_report: str = ''
+ postgresql_database_url: str = ''
def __init__(self, **kwargs):
+ # 鏇挎崲閰嶇疆涓殑IP鍦板潃
+ host_ip = os.getenv('HOST_IP', '127.0.0.1')
+ kwargs['sgb_base_url'] = kwargs.get('sgb_base_url', '').replace('127.0.0.1', host_ip)
+ kwargs['sgb_websocket_url'] = kwargs.get('sgb_websocket_url', '').replace('127.0.0.1', host_ip)
+ kwargs['fwr_base_url'] = kwargs.get('fwr_base_url', '').replace('127.0.0.1', host_ip)
+ kwargs['sgb_db_url'] = kwargs.get('sgb_db_url', '').replace('127.0.0.1', host_ip)
+ kwargs['fwr_db_url'] = kwargs.get('fwr_db_url', '').replace('127.0.0.1', host_ip)
# Check if all required fields are provided and set them
for field in self.__annotations__.keys():
if field not in kwargs:
--
Gitblit v1.8.0