Versions Compared

Key

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

...

  1. checkout edx-platform

    Code Block
    cd edx-platform
    git remote add rg_platform git@github.com:raccoongang/edx-platform.git
    # choose any remote name you like
    git fetch --all
    git checkout rg_platform/oex_proctoring
  2. checkout frontend-app-learning

    Code Block
    cd frontend-app-learning
    git remote add rg_frontend git@github.com:raccoongang/frontend-app-learning.git
    # choose any remote name you like
    git fetch --all
    git checkout rg_frontend/oex_proctoring
  3. install requirements for lms and studio

    Code Block
    cd devstack
    make dev.up
    make lms-shell 
    pip install -r requirements/edx/development.txt
    # exit lms-shell
    make studio-shell
    pip install -r requirements/edx/development.txt
    # exit studio-shell
  4. restart devstack

    Code Block
    make stop
    make dev.up

...

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

...