* Use the new header and footer. Note: Because we’re not fully using frontend-base yet, the header is broken. It’ll start working once frontend-base’s App singleton is properly initialized. * Initializing the app via App.initialize - Removes App component - Cleans up environment configuration - SUPPORT_URL is the only custom env variable. - Cleans up usage of SUPPORT_URL and LOGOUT_URL to take advantage of App.config. * Convert delete-account service to use App. * Using App for services and cleaning up associated code. Also pulling out the frontend-auth shim, since it was also dead and was sorta API-service like. * Cleaning up “common” and some dead code. - Most of it goes into account-settings for now. - Shuffling the “utils” files around to classify them better. - Removing unused assets * Moving files into data subdirectory in account-settings Including all the utils stuff. * Moving top level reducers/sagas into a data dir * Fix import bug with sagaUtils * Removing connected-react-router * Ceasing to use authentication and configuration from redux Also removing some unnecessary test config. * Updating redux init to default to prod. Also fixing a bug where it wasn’t going into prod mode at all. * Moving the duplicateTpaProvider logic out of redux This lets us stop setting initial state on redux. Also removing url-polyfill. * A little cleanup. * Remove default exports to keep the pattern the same.
19 lines
706 B
Plaintext
19 lines
706 B
Plaintext
ACCESS_TOKEN_COOKIE_NAME='edx-jwt-cookie-header-payload'
|
|
BASE_URL='localhost:1997'
|
|
CREDENTIALS_BASE_URL='http://localhost:18150'
|
|
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'
|
|
LOGIN_URL='http://localhost:18000/login'
|
|
LOGOUT_URL='http://localhost:18000/login'
|
|
MARKETING_SITE_BASE_URL='http://localhost:18000'
|
|
NODE_ENV='development'
|
|
ORDER_HISTORY_URL='localhost:1996/orders'
|
|
PORT=1997
|
|
REFRESH_ACCESS_TOKEN_ENDPOINT='http://localhost:18000/login_refresh'
|
|
SEGMENT_KEY=null
|
|
SITE_NAME='edX'
|
|
SUPPORT_URL='http://localhost:18000/support'
|
|
USER_INFO_COOKIE_NAME='edx-user-info'
|