Devstack development process
- Clone the repo to your devstack/src directory. This directory is generally mounted to be shared with the devstack VM
- `vagrant ssh` to SSH on to the Devstack
- `sudo su edxapp` to log in at the edxapp user
- cd to the src/xblock-drag-and-drop-v2/ directory
- run `pip uninstall xblock-drag-and-drop-v2` to remove the installed version
- run `python setup.py build`
- run `python setup.py install`
...
- develop`
Feature Overview
Drag and drop v2 XBlock implements a friendly drag-and-drop style problem, where the learner has to drag items to zones on a target image.
...
Studio interface (drag_and_drop_edit.js) contains single function/class DragAndDropEditBlock(runtime, element, params) that follows JS XBlock signature.
...