From 107f62c85519589ba70ce1ece1facec4da720109 Mon Sep 17 00:00:00 2001 From: Pwd9000-ML Date: Sun, 21 Jan 2024 15:22:08 +0000 Subject: [PATCH] test --- 06_librechat_app_config.tf | 6 +++--- tests/auto_test1/testing.auto.tfvars | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/06_librechat_app_config.tf b/06_librechat_app_config.tf index 5bea717..343b114 100644 --- a/06_librechat_app_config.tf +++ b/06_librechat_app_config.tf @@ -5,8 +5,8 @@ locals { DOCKER_REGISTRY_SERVER_URL = "https://index.docker.io" ####### WEBSITES_ENABLE_APP_SERVICE_STORAGE = false DOCKER_ENABLE_CI = false - WEBSITES_PORT = var.libre_app_port - PORT = var.libre_app_port + WEBSITES_PORT = 3080 + PORT = 3080 DOCKER_CUSTOM_IMAGE_NAME = "ghcr.io/danny-avila/librechat-dev-api:latest" NODE_ENV = "production" ####### @@ -14,7 +14,7 @@ locals { APP_TITLE = var.libre_app_title CUSTOM_FOOTER = var.libre_app_custom_footer HOST = var.libre_app_host - PORT = var.libre_app_port + # PORT = var.libre_app_port MONGO_URI = var.libre_app_mongo_uri != null ? var.libre_app_mongo_uri : "@Microsoft.KeyVault(SecretUri=${azurerm_key_vault_secret.openai_cosmos_uri.id})" DOMAIN_CLIENT = var.libre_app_domain_client DOMAIN_SERVER = var.libre_app_domain_server diff --git a/tests/auto_test1/testing.auto.tfvars b/tests/auto_test1/testing.auto.tfvars index c0f8db5..0744ae8 100644 --- a/tests/auto_test1/testing.auto.tfvars +++ b/tests/auto_test1/testing.auto.tfvars @@ -108,10 +108,10 @@ libre_app_virtual_network_subnet_id = null libre_app_title = "Azure OpenAI LibreChat" libre_app_custom_footer = "Privately hosted chat app powered by Azure OpenAI and LibreChat" libre_app_host = "0.0.0.0" -libre_app_port = 80 +libre_app_port = 3080 libre_app_mongo_uri = null -libre_app_domain_client = "http://localhost" #:3080" -libre_app_domain_server = "http://localhost" #:3080" +libre_app_domain_client = "http://localhost:3080" +libre_app_domain_server = "http://localhost:3080" # debug logging libre_app_debug_logging = true