Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 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

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

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

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

...