-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into open-release/quince.master
- Loading branch information
Showing
34 changed files
with
1,749 additions
and
1,186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ jobs: | |
username: ${{ secrets.EDX_SMTP_USERNAME }} | ||
password: ${{ secrets.EDX_SMTP_PASSWORD }} | ||
subject: CI workflow failed in ${{github.repository}} | ||
to: [email protected] | ||
to: [email protected],[email protected] | ||
from: github-actions <[email protected]> | ||
body: CI workflow in ${{github.repository}} failed! | ||
For details see "github.com/${{ github.repository }}/actions/runs/${{ github.run_id | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.DS_Store | ||
.eslintcache | ||
env.config.js | ||
node_modules | ||
npm-debug.log | ||
coverage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,45 @@ Some guidelines for writing widgets: | |
* You can load data from the redux store, but should not add or modify fields in that structure. | ||
* Network events should be managed in component hooks, though can use our `data/constants/requests:requestStates` for ease of tracking the request states. | ||
|
||
## License | ||
|
||
The code in this repository is licensed under the AGPLv3 unless otherwise | ||
noted. | ||
|
||
Please see `LICENSE <LICENSE>`_ for details. | ||
|
||
## Getting Help | ||
|
||
If you're having trouble, we have discussion forums at | ||
https://discuss.openedx.org where you can connect with others in the community. | ||
|
||
Our real-time conversations are on Slack. You can request a `Slack | ||
invitation`_, then join our `community Slack workspace`_. Because this is a | ||
frontend repository, the best place to discuss it would be in the `#wg-frontend | ||
channel`_. | ||
|
||
For anything non-trivial, the best path is to open an issue in this repository | ||
with as many details about the issue you are facing as you can provide. | ||
|
||
https://github.com/openedx/frontend-app-learner-dashboard/issues | ||
|
||
For more information about these options, see the `Getting Help`_ page. | ||
|
||
.. _Slack invitation: https://openedx.org/slack | ||
.. _community Slack workspace: https://openedx.slack.com/ | ||
.. _#wg-frontend channel: https://openedx.slack.com/archives/C04BM6YC7A6 | ||
.. _Getting Help: https://openedx.org/community/connect | ||
|
||
## Resources | ||
|
||
* [Learner Home project info at the Open edX Wiki](https://openedx.atlassian.net/wiki/spaces/OEPM/pages/3575906333/Learner+Home) | ||
|
||
## The Open edX Code of Conduct | ||
|
||
All community members are expected to follow the `Open edX Code of Conduct`_. | ||
|
||
.. _Open edX Code of Conduct: https://openedx.org/code-of-conduct/ | ||
|
||
## Reporting Security Issues | ||
|
||
Please do not report security issues in public. Please email [email protected]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
Learner Dashboard is now able to handle JS-based configuration! | ||
For the time being, the `.env.*` files are still made available when cloning down this repo or pulling from | ||
the master branch. To switch to using `env.config.js`, make a copy of `example.env.config.js` and configure as needed. | ||
For testing with Jest Snapshot, there is a mock in `/src/setupTest.jsx` for `getConfig` that will need to be | ||
uncommented. | ||
Note: having both .env and env.config.js files will follow a predictable order, in which non-empty values in the | ||
JS-based config will overwrite the .env environment variables. | ||
frontend-platform's getConfig loads configuration in the following sequence: | ||
- .env file config | ||
- optional handlers (commonly used to merge MFE-specific config in via additional process.env variables) | ||
- env.config.js file config | ||
- runtime config | ||
*/ | ||
|
||
module.exports = { | ||
NODE_ENV: 'development', | ||
NODE_PATH: './src', | ||
PORT: 1996, | ||
BASE_URL: 'localhost:1996', | ||
LMS_BASE_URL: 'http://localhost:18000', | ||
ECOMMERCE_BASE_URL: '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', | ||
LOGO_TRADEMARK_URL: 'https://edx-cdn.org/v3/default/logo-trademark.svg', | ||
LOGO_WHITE_URL: 'https://edx-cdn.org/v3/default/logo-white.svg', | ||
LOGO_POWERED_BY_OPEN_EDX_URL_SVG: 'https://edx-cdn.org/v3/stage/open-edx-tag.svg', | ||
FAVICON_URL: 'https://edx-cdn.org/v3/default/favicon.ico', | ||
CSRF_TOKEN_API_PATH: '/csrf/api/v1/token', | ||
REFRESH_ACCESS_TOKEN_ENDPOINT: 'http://localhost:18000/login_refresh', | ||
ACCESS_TOKEN_COOKIE_NAME: 'edx-jwt-cookie-header-payload', | ||
USER_INFO_COOKIE_NAME: 'edx-user-info', | ||
SITE_NAME: 'localhost', | ||
DATA_API_BASE_URL: 'http://localhost:8000', | ||
// LMS_CLIENT_ID should match the lms DOT client application in your LMS container | ||
LMS_CLIENT_ID: 'login-service-client-id', | ||
SEGMENT_KEY: '', | ||
FEATURE_FLAGS: {}, | ||
MARKETING_SITE_BASE_URL: 'http://localhost:18000', | ||
SUPPORT_URL: 'http://localhost:18000/support', | ||
CONTACT_URL: 'http://localhost:18000/contact', | ||
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', | ||
FACEBOOK_URL: 'https://www.facebook.com', | ||
TWITTER_URL: 'https://twitter.com', | ||
YOU_TUBE_URL: 'https://www.youtube.com', | ||
LINKED_IN_URL: 'https://www.linkedin.com', | ||
REDDIT_URL: 'https://www.reddit.com', | ||
APPLE_APP_STORE_URL: 'https://www.apple.com/ios/app-store/', | ||
GOOGLE_PLAY_URL: 'https://play.google.com/store', | ||
ENTERPRISE_MARKETING_URL: 'http://example.com', | ||
ENTERPRISE_MARKETING_UTM_SOURCE: 'example.com', | ||
ENTERPRISE_MARKETING_UTM_CAMPAIGN: 'example.com Referral', | ||
ENTERPRISE_MARKETING_FOOTER_UTM_MEDIUM: 'Footer', | ||
LEARNING_BASE_URL: 'http://localhost:2000', | ||
SESSION_COOKIE_DOMAIN: 'localhost', | ||
ZENDESK_KEY: '', | ||
HOTJAR_APP_ID: '', | ||
HOTJAR_VERSION: 6, | ||
HOTJAR_DEBUG: '', | ||
NEW_RELIC_APP_ID: '', | ||
NEW_RELIC_LICENSE_KEY: '', | ||
ACCOUNT_SETTINGS_URL: 'http://localhost:1997', | ||
ACCOUNT_PROFILE_URL: 'http://localhost:1995', | ||
ENABLE_NOTICES: '', | ||
CAREER_LINK_URL: '', | ||
OPTIMIZELY_FULL_STACK_SDK_KEY: '', | ||
EXPERIMENT_08_23_VAN_PAINTED_DOOR: true, | ||
}; |
Oops, something went wrong.