# Modify users created an incorrect email and that might clash with the newly created users
./manage.py lms shell -c \
  "from django.contrib.auth import get_user_model;\
  get_user_model().objects.filter(username='keyterms').exclude(email='keyterms@openedx').update(email='keyterms@openedx')"

./manage.py lms manage_user keyterms keyterms@openedx --staff --superuser
./manage.py lms create_dot_application \
    keyterms \
    keyterms \
    --redirect-uris "http://keytermsapi:18500" \
    --skip-authorization \
    --update