From c7dff5df8ad95cf7b27049b25595682045d6b2bf Mon Sep 17 00:00:00 2001
From: mashal-m <mashal.malik@arbisoft.com>
Date: Mon, 4 Dec 2023 12:54:30 +0500
Subject: [PATCH] feat: add account and profile urls in env files

---
 .env             | 2 ++
 .env.development | 2 ++
 .env.test        | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/.env b/.env
index 273646442..e408327dc 100644
--- a/.env
+++ b/.env
@@ -7,6 +7,8 @@ ECOMMERCE_BASE_URL=''
 LANGUAGE_PREFERENCE_COOKIE_NAME=''
 LMS_BASE_URL=''
 LEARNING_BASE_URL=''
+ACCOUNT_SETTINGS_URL=''
+ACCOUNT_PROFILE_URL=''
 LOGIN_URL=''
 LOGOUT_URL=''
 LOGO_URL=''
diff --git a/.env.development b/.env.development
index ae4b3cee5..a677abf17 100644
--- a/.env.development
+++ b/.env.development
@@ -2,6 +2,8 @@ NODE_ENV='development'
 PORT=2002
 ACCESS_TOKEN_COOKIE_NAME='edx-jwt-cookie-header-payload'
 BASE_URL='http://localhost:2002'
+ACCOUNT_SETTINGS_URL='http://localhost:1997'
+ACCOUNT_PROFILE_URL='http://localhost:1995'
 CREDENTIALS_BASE_URL='http://localhost:18150'
 CSRF_TOKEN_API_PATH='/csrf/api/v1/token'
 ECOMMERCE_BASE_URL='http://localhost:18130'
diff --git a/.env.test b/.env.test
index 84bc122cd..de63c5455 100644
--- a/.env.test
+++ b/.env.test
@@ -6,6 +6,8 @@ ECOMMERCE_BASE_URL='http://localhost:18130'
 LANGUAGE_PREFERENCE_COOKIE_NAME='openedx-language-preference'
 LMS_BASE_URL='http://localhost:18000'
 LEARNING_BASE_URL='http://localhost:2000'
+ACCOUNT_SETTINGS_URL='http://localhost:1997'
+ACCOUNT_PROFILE_URL='http://localhost:1995'
 LOGIN_URL='http://localhost:18000/login'
 LOGOUT_URL='http://localhost:18000/logout'
 LOGO_URL='https://edx-cdn.org/v3/default/logo.svg'