Please tag edx-aperture on any PRs or issues. Thanks!
A tool used by course teams to communicate with thier learners. The interface for anything related to instructor to learner communications. Instructor bulk email, for example.
For now, this repo is not intergrated with devstack. You'll be running the app locally and not through docker. This does make setup a little easier.
Clone the repo into your usual workspace
mkdir -p ~/workspace/ cd ~/workspace/ git clone https://github.com/edx/frontend-app-communications.git
Install frontend dependencies
npm i
Start the devserver. The app will be running at
localhost:1984
, or whatever port you change it too.npm start
If you wish to add new environment varibles for local testing, they should be listed in 2 places:
- In
.env.development
- Added to the
mergeConfig
found insrc/index.jsx
initialize({ config: () => { mergeConfig({ EXAMPLE_VALUE: true, }, 'CommuncationsAppConfig');
Tests use jest and react-test-library. To run all the tests for this repo:
npm test