Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

...

paDevstack installation

For the project, it's preferred to use the latest version of the platform and devstack (master branch)
Please run commands

...

Set a Subsection to be Timed

https://edx.readthedocs.io/projects/open-edx-building-and-running-a-course/en/latest/course_features/timed_exams.html#set-a-subsection-to-be-timed

  1. Go to Studio and add a new course subsection

  2. Select the Configure icon for the subsection.

  3. In the Grading section of opened popup, set the assignment type and due date for the subsection.

  4. Select the Advanced tab.

  5. In the Set as a Special Exam section, select Timed.

  6. In the Time Allotted field, adjust the length of time that you want learners to have to complete the problems in the subsection.

  7. Select Save.

  8. Publish course

...

  1. create dir packages and clone SE lib

    Code Block
    cd frontend-app-learning
    mkdir packages
    cd packages
    git clone git@github.com:raccoongangedx/frontend-lib-special-exams.git
  2. create a module.config.js file in frontend-app-learning

    Code Block
    module.exports = {
      localModules: [
        { moduleName: '@edx/frontend-lib-special-exams', dir: './packages/frontend-lib-special-exams', dist: 'src' },
      ],
    };
  3. restart devstack

    Code Block
    make stop
    make dev.up.lms+frontend-app-learning

...