From b5ace63438aece9555c97ef9e38cf10c5f7da2d6 Mon Sep 17 00:00:00 2001 From: mashal-m Date: Thu, 30 Nov 2023 12:54:31 +0500 Subject: [PATCH] feat: add profile config in env files --- .env | 1 + .env.development | 1 + .env.test | 1 + 3 files changed, 3 insertions(+) diff --git a/.env b/.env index dd5b16eb4..1feaf21df 100644 --- a/.env +++ b/.env @@ -11,6 +11,7 @@ LOGOUT_URL='' MARKETING_SITE_BASE_URL='' ORDER_HISTORY_URL='' ACCOUNT_SETTINGS_URL='' +ACCOUNT_PROFILE_URL='' REFRESH_ACCESS_TOKEN_ENDPOINT='' SEGMENT_KEY='' SITE_NAME='' diff --git a/.env.development b/.env.development index 159974781..5e327aae7 100644 --- a/.env.development +++ b/.env.development @@ -5,6 +5,7 @@ BASE_URL='localhost:1995' CREDENTIALS_BASE_URL='http://localhost:18150' ACCOUNT_SETTINGS_URL=http://localhost:1997 CSRF_TOKEN_API_PATH='/csrf/api/v1/token' +ACCOUNT_PROFILE_URL='http://localhost:1995' ECOMMERCE_BASE_URL='http://localhost:18130' LANGUAGE_PREFERENCE_COOKIE_NAME='openedx-language-preference' LMS_BASE_URL='http://localhost:18000' diff --git a/.env.test b/.env.test index ded391d65..716cae188 100644 --- a/.env.test +++ b/.env.test @@ -6,6 +6,7 @@ ECOMMERCE_BASE_URL='http://localhost:18130' LANGUAGE_PREFERENCE_COOKIE_NAME='openedx-language-preference' LMS_BASE_URL='http://localhost:18000' ACCOUNT_SETTINGS_URL='http://localhost:1997' +ACCOUNT_PROFILE_URL='http://localhost:1995' LOGIN_URL='http://localhost:18000/login' LOGOUT_URL='http://localhost:18000/logout' MARKETING_SITE_BASE_URL='http://localhost:18000'