fix: add ecommerce url env to env.prod

This commit is contained in:
Jason Wesson
2023-05-18 18:11:34 +00:00
parent e3784d36f1
commit 309a07ffa9
2 changed files with 2 additions and 1 deletions

1
.env
View File

@@ -2,6 +2,7 @@ NODE_ENV='production'
NODE_PATH=./src
BASE_URL=''
LMS_BASE_URL=''
ECOMMERCE_PUBLIC_URL_ROOT=''
LOGIN_URL=''
LOGOUT_URL=''
CSRF_TOKEN_API_PATH=''

View File

@@ -2,6 +2,7 @@ NODE_ENV='development'
PORT=1996
BASE_URL='localhost:1996'
LMS_BASE_URL='http://localhost:18000'
ECOMMERCE_PUBLIC_URL_ROOT='http://localhost:18130'
LOGIN_URL='http://localhost:18000/login'
LOGOUT_URL='http://localhost:18000/logout'
LOGO_URL=https://edx-cdn.org/v3/default/logo.svg
@@ -22,7 +23,6 @@ FEATURE_FLAGS={}
MARKETING_SITE_BASE_URL='http://localhost:18000'
SUPPORT_URL='http://localhost:18000/support'
CONTACT_URL='http://localhost:18000/contact'
ECOMMERCE_PUBLIC_URL_ROOT='http://localhost:18130'
OPEN_SOURCE_URL='http://localhost:18000/openedx'
TERMS_OF_SERVICE_URL='http://localhost:18000/terms-of-service'
PRIVACY_POLICY_URL='http://localhost:18000/privacy-policy'