diff --git a/repromon.ini b/repromon.ini index f109dd9..e2149ae 100644 --- a/repromon.ini +++ b/repromon.ini @@ -30,6 +30,9 @@ UI2_APP_PATH=${ROOT_PATH}/repromon_vue/build # user to create default singleton security context #DEBUG_USERNAME=user1 +WEB_HOST=${WEB_HOST} +WEB_PORT=${WEB_PORT} + [db] #SQLAlchemy DB engine configuration diff --git a/repromon_app/config.py b/repromon_app/config.py index 6335729..34cd377 100644 --- a/repromon_app/config.py +++ b/repromon_app/config.py @@ -43,6 +43,8 @@ class SettingsConfig(BaseSectionConfig): TOKEN_EXPIRE_SEC: int = 24 * 60 * 60 UI_APP_PATH: str = None UI2_APP_PATH: str = None + WEB_HOST: str = "localhost" + WEB_PORT: int = 9095 @property def CORS_ALLOW_ORIGINS_LIST(self) -> list[str]: