I want to register an user through instruction dashboard how is it possible?

I am new to Open edX and would appreciate your guidance. I am trying to implement a specific feature using a plugin, but I believe there may be an issue with the steps I followed to create or mount the plugin correctly.

Could you please advise me on how to properly implement this feature or point me to relevant documentation or best practices?

Thank you in advance for your help.

Could you share the steps you’re following to create the plugins? Please ensure you’re referring to the documentation for the correct process

First, I created a Django app inside the ~/.local/share/tutor-plugins folder and installed it using the command pip install -e ..

The second method involves using Cookiecutter, as described in the Tutor documentation.

In both methods, I can see my plugin listed when I run tutor plugins list, and I’m able to enable it. Now, do I need to mount it or perform any other configuration for it to work properly?

For a custom Django package, you can mount your package using the tutor mounts add command. Please refer to the official documentation for detailed instructions on mapping Python dependencies. Since your package is custom, it won’t appear in the default tutor mounts list.

To ensure proper integration, you need to add your package to a Tutor plugin. Here are the steps:

  1. Create or modify a Tutor plugin to include your package.
  2. Add your package’s Python dependencies to the plugin configuration.