From a1877bb4991217f9522979c7ae04b1a24b81f42e Mon Sep 17 00:00:00 2001 From: Justin Hynes Date: Tue, 24 Sep 2024 15:13:48 +0000 Subject: [PATCH] chore: add missing ACCOUNT_PROFILE_URL setting to the Account MFE This PR adds the `ACCOUNT_PROFILE_URL` setting to the `.env` and `.env.development` settings files in order to make it easier to configure the communication between the Profile and Account MFEs in Open edX development environments. --- .env | 1 + .env.development | 1 + 2 files changed, 2 insertions(+) diff --git a/.env b/.env index 6455153c1..1f0b6434d 100644 --- a/.env +++ b/.env @@ -1,4 +1,5 @@ ACCESS_TOKEN_COOKIE_NAME='' +ACCOUNT_PROFILE_URL='' BASE_URL='' CREDENTIALS_BASE_URL='' CSRF_TOKEN_API_PATH='' diff --git a/.env.development b/.env.development index a3d742a50..ee578f76e 100644 --- a/.env.development +++ b/.env.development @@ -1,4 +1,5 @@ ACCESS_TOKEN_COOKIE_NAME='edx-jwt-cookie-header-payload' +ACCOUNT_PROFILE_URL='http://localhost:1995' BASE_URL='localhost:1997' CREDENTIALS_BASE_URL='http://localhost:18150' CSRF_TOKEN_API_PATH='/csrf/api/v1/token'