Skip to content

Commit

Permalink
fix: add allauth to middleware
Browse files Browse the repository at this point in the history
when the demo is run using
`python manage.py migrate --settings=demo.settings --noinput`
a `django.core.exceptions.ImproperlyConfigured` exception is thrown
  • Loading branch information
RaoulGeorge committed Jan 24, 2024
1 parent 23f097c commit ee69376
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions demo/demo/settings.py
Expand Up @@ -47,6 +47,7 @@
)

MIDDLEWARE = (
'allauth.account.middleware.AccountMiddleware',
'corsheaders.middleware.CorsMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
Expand Down

0 comments on commit ee69376

Please sign in to comment.