Skip to content

Latest commit

History

History
259 lines (166 loc) 路 7.33 KB

README-template-frontend-app.rst

File metadata and controls

259 lines (166 loc) 路 7.33 KB

frontend-app-[PLACEHOLDER]

Note

This README is a template. As a maintainer, please review its contents and update all relevant sections. Instructions to you are marked with "[PLACEHOLDER]" or "[TODO]". Update or remove those sections, and remove this note when you are done.

License status-badge Continuous Integration Codecov

Purpose

Note

[TODO]

What is this MFE? Add a 2-3 sentence description of what it is and what it does.

This is the Awesome MFE. It was built to provide an unmatched learning experience, with improved tools for both randomized goodness and the ability to directly reference amaze-blocks in existing courses. This experience is powered by the new Fantastico storage engine.

Getting Started

Devstack Installation

Note

[TODO]

Describe in detail how this MFE can be installed and set up for development in a devstack. Include as many screenshots as you can to make your guide easier to follow! Use the following steps as an example:

Follow these steps to provision, run, and enable an instance of the [PLACEHOLDER] MFE for local development via the devstack.

  1. To start, clone the devstack repository as a child of an arbitrary ~/workspace/ directory.

    mkdir -p ~/workspace/
    cd ~/workspace/
    git clone https://github.com/openedx/devstack.git
  2. Configure default services and setup devstack

    Create a devstack/options.local.mk file with only the services required. Commonly, this will just be the LMS:

    DEFAULT_SERVICES ?= \
    lms
  3. Start the devstack with:

    cd devstack
    make dev.pull
    make dev.provision
    make dev.up
  4. In an LMS shell, enable the ENABLE_[PLACEHOLDER]_MICROFRONTEND feature flag:

    make lms-shell
    vim /edx/etc/lms.yml
    ---
    FEATURES:
        ENABLE_[PLACEHOLDER]_MICROFRONTEND: true

    Exit the shell and restart the LMS so changes take effect:

    make lms-restart
  5. Create and enable the waffle flag required to redirect users to the MFE, enabling it for everyone:

    make lms-shell
    ./manage.py lms waffle_flag --create --everyone [PLACEHOLDER].redirect_to_microfrontend
  6. Start this MFE with:

    cd frontend-app-[PLACEHOLDER]
    nvm use
    npm ci
    npm start
  7. Finally, open the MFE in a browser

    Navigate to http://localhost:8080 to open the MFE. This is what it should look like if everything worked:

    "Polycon marking template" by mangtronix is licensed under CC BY-SA 2.0."Polycon marking template" by mangtronix is licensed under CC BY-SA 2.0.

Configuration

Note

[TODO]

Explicitly list anything that this MFE requires to function correctly. This includes:

  • A list of both required and optional .env variables, and how they each affect the functioning of the MFE
  • A list of edx-platform feature and waffle flags that are either required to enable use of this MFE, or affect the behavior of the MFE in some other way
  • A list of IDAs or other MFEs that this MFE depends on to function correctly

[PLACEHOLDER: Other Relevant Sections]

Note

[TODO]

This is optional, but you might have additional sections you wish to cover. For instance, architecture documentation, i18n notes, build process, or more.

Known Issues

Note

[TODO]

If there are long-standing known issues, list them here as a bulletted list, linking to the actual issues in the Github repository.

Development Roadmap

Note

[TODO]

Include a list of current development targets, in (rough) descending order of priority. It can be a simple bulleted list of roadmap items with links to Github issues or wiki pages.

Getting Help

Note

[TODO]

Use the following as a template, but feel free to add specific places where this MFE is commonly discussed.

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-[PLACEHOLDER]/issues

For more information about these options, see the Getting Help page.

License

The code in this repository is licensed under the AGPLv3 unless otherwise noted.

Please see LICENSE for details.

Contributing

Note

[TODO]

Feel free to add contribution details specific to your repository.

Contributions are very welcome. Please read How To Contribute for details.

This project is currently accepting all types of contributions, bug fixes, security fixes, maintenance work, or new features. However, please make sure to have a discussion about your new feature idea with the maintainers prior to beginning development to maximize the chances of your change being accepted. You can start a conversation by creating a new issue on this repo summarizing your idea.

The Open edX Code of Conduct

All community members are expected to follow the Open edX Code of Conduct.

People

The assigned maintainers for this component and other project details may be found in Backstage. Backstage pulls this data from the catalog-info.yaml file in this repo.

Reporting Security Issues

Please do not report security issues in public. Email security@openedx.org instead.