Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Pwd9000-ML committed Jan 21, 2024
1 parent cec5792 commit 107f62c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions 06_librechat_app_config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ 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" #######

### Server Configuration ###
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
Expand Down
6 changes: 3 additions & 3 deletions tests/auto_test1/testing.auto.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 107f62c

Please sign in to comment.