From 6f727920c8e5e767e1e29dc7f6d6f02200d6cfb8 Mon Sep 17 00:00:00 2001 From: mashal-m Date: Mon, 4 Dec 2023 18:29:20 +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 9a7cd062..6425f15d 100644 --- a/.env +++ b/.env @@ -20,5 +20,7 @@ SEGMENT_KEY='' SITE_NAME=null USER_INFO_COOKIE_NAME=null EDX_FOR_BUSINESS_TITLE='' +ACCOUNT_SETTINGS_URL='' +ACCOUNT_PROFILE_URL='' EDX_FOR_ONLINE_EDU_TITLE='' EDX_ENTERPRISE_ALACARTE_TITLE='' diff --git a/.env.development b/.env.development index 723a5199..30478862 100644 --- a/.env.development +++ b/.env.development @@ -8,6 +8,8 @@ CSRF_TOKEN_API_PATH='/csrf/api/v1/token' 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' LOGO_URL=https://edx-cdn.org/v3/default/logo.svg diff --git a/.env.test b/.env.test index d7f51583..04fcd7dc 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' LOGIN_URL='http://localhost:18000/login' +ACCOUNT_SETTINGS_URL='http://localhost:1997' +ACCOUNT_PROFILE_URL='http://localhost:1995' LOGOUT_URL='http://localhost:18000/logout' LOGO_URL=https://edx-cdn.org/v3/default/logo.svg LOGO_TRADEMARK_URL=https://edx-cdn.org/v3/default/logo-trademark.svg