This application is a public facing catalog page for use by edX consumers to find courses in catalogs before deciding to enroll.
The dev server is running at http://localhost:8735. The staging server is running at https://explore-catalog.stage.edx.org/.
The source for this project is organized into nested submodules according to the ADR Feature-based Application Organization.
Local Development
To run this project locally:
Clone this repository
From repository root folder, run:
npm install
Note: locally this app will default to open edX branding, so colors and formatting might look a little different than what will be deployed. To combat this, you can optionally run:
npm install --save @edx/brand@npm:@edx/brand-edx.org
This project requires Algolia developer keys. Once you have them, make the following local modifications to the
.env.development
file and replace the keys:ALGOLIA_APP_ID='' ALGOLIA_SEARCH_API_KEY='' ALGOLIA_INDEX_NAME=''
You will also need to replace the following variables with valid Catalog Query Titles that are present in your Algolia index:
EDX_FOR_SUBSCRIPTION_TITLE='' # default = 'Subscription' EDX_ENTERPRISE_ALACARTE_TITLE='' # default = 'A la carte'
From repository root folder, run:
npm start
to start your local server at http://localhost:8735.
Helpful Testing Commands
npm run tests
npm run lint
npm run lint:fix
to automatically fix errors
Production Build
The production build is created with npm run build
.
Please see edx/frontend-platform's i18n module for documentation on internationalization. The documentation explains how to use it, and the How To has more detail.