You're using the Django "sites framework" without having set the SITE_ID setting. Create a site in your database and set the SITE_ID setting or pass a request to Site.objects.get_current() to fix this error.
質問はhereを頼まれましたが、受け入れられた答えは、生産のrunserver
を使用することを提案しています。
hereでも受け付けられた回答は不問です。
私はsettings.py
ファイルに以下を追加しようとしましたが、それはエラーがスローされます。
from django.contrib.sites.models import Site
SITE_ID = Site.objects.get_current()
エラーは次のとおりです。
django.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty.
...しかし、私はSECRET_KEY設定セットを持っています。
Django documentationを同じサーバー上の複数のサーバーに接続する適切な方法は何ですか?