### Moodle Enrolment Method Example (Self) Source: https://github.com/egorprh/moodledocs/blob/main/docs/Managing a Moodle course/Courses/Upload_courses.md An example showcasing the configuration of a self-enrolment method for a Moodle course. It includes the enrolment method type and a specific start date for enrolment. ```plaintext enrolment_2: self enrolment_2_startdate: 2013-01-30 ``` -------------------------------- ### Moodle Enrolment Method Example (Manual) Source: https://github.com/egorprh/moodledocs/blob/main/docs/Managing a Moodle course/Courses/Upload_courses.md An example demonstrating the configuration of a manual enrolment method for a Moodle course. It specifies the enrolment method type, the assigned role, and the enrolment period. ```plaintext enrolment_1: manual enrolment_1_role: student enrolment_1_enrolperiod: 1 month ``` -------------------------------- ### Install Project Dependencies with Yarn Source: https://github.com/egorprh/moodledocs/blob/main/README.md Installs all necessary project dependencies using the Yarn package manager. This is a prerequisite for running other project commands. ```bash $ yarn ``` -------------------------------- ### Start Local Development Server with Yarn Source: https://github.com/egorprh/moodledocs/blob/main/README.md Starts a local development server for live preview of website changes. Most modifications are reflected in real-time without requiring a server restart. ```bash $ yarn start ``` -------------------------------- ### Sample MoodleCourse LDAP Object Source: https://github.com/egorprh/moodledocs/blob/main/docs/Managing a Moodle site/Enrolments/LDAP_enrolment.md This is an example of a 'moodleCourse' object as stored in LDAP. It demonstrates how the attributes like 'cn' (course ID), 'givenName' (short name), 'sn' (full name), 'description', 'teacherUid', and 'memberUid' are populated for a specific course entry. ```ldif dn: cn=851,ou=moodle,ou=groups,dc=ldapserver,dc=tmcc,dc=edu objectClass: moodleCourse cn: 851 givenName: LV851 sn: 2007S/Introduction to Moodle description: Jahr: 2007 Sommer, Announcement teacherUid: userA memberUid: user1 ```