Updating the Domain of Your Site

If you are running the record transfer app somewhere other than your localhost, you will need to add your site’s domain to the database. If you do not set the domain, your emails will not send correctly, and will have the wrong link to your site.

To set the domain of your site, run the following command from the app directory within the container:

python manage.py set_domain "my.domain.com"

replacing my.domain.com with your site’s fully qualified domain name.

If you also want to set an optional display name for your site, you can use the --display-name flag:

python manage.py set_domain "my.domain.com" --display-name "My Site Name"

replacing “My Site Name” with your desired display name.