Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Current »

prerequisite: have edx-plaform setup w/ tutor-nightly

Setup Steps

  • To avoid issues with changing the tutor config I recommend stopping all services tutor dev stop

  • Full installation of tutor-nightly should already include the nightly release of the discovery plugin

    • run tutor plugins list to verify

  • Enable the discovery plugin tutor plugins enable discovery

  • Rebuild your tutor config tutor config save

  • Run setup. This will handle database access, migrations, DOT application setup, sync courses etc

    tutor dev init -l discovery
  • (needs fix) run refresh_course_metadata with the ‘dev’ partner code

    tutor dev run discovery ./manage.py refresh_course_metadata --partner_code=dev
  • Create a superuser to gain access to Django admin

    tutor dev run discovery ./manage.py createsuperuser
  • (needs fix) Disable production site configuration

Running the Service with Local Checkout

  • Make sure any running discovery container is stopped tutor dev stop

  • Install requirements based on local checkout

    tutor dev run --mount=discovery:/path/to/course-discovery:/openedx/discovery discovery bash
    tutor dev run discovery make requirements
  • Start with --mount option

    tutor dev start --mount=discovery:/path/to/course-discovery:/openedx/discovery discovery

Running Cache Programs

  • make sure the lms service user has the correct permissions

    • (needs fix) init does not create a user with correct perms

      tutor dev run lms ./manage.py lms manage_user lms_catalog_service_user lms_catalog_service_user@openedx --staff --superuser --unusable-password

  • run cache_programs

    tutor dev run lms ./manage.py lms cache_programs
  • No labels