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.
This commit is contained in:
Justin Hynes
2024-09-24 15:13:48 +00:00
parent cd44f15634
commit a1877bb499
2 changed files with 2 additions and 0 deletions

1
.env
View File

@@ -1,4 +1,5 @@
ACCESS_TOKEN_COOKIE_NAME=''
ACCOUNT_PROFILE_URL=''
BASE_URL=''
CREDENTIALS_BASE_URL=''
CSRF_TOKEN_API_PATH=''

View File

@@ -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'