You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Out of the box, just running docker-compose up after cloning the repo gives this error which I fixed by adding the missing django-allauth to requirements.txt:
=> ERROR [7/8] RUN python manage.py makemigrations
...[snip]..
#12 0.748 ModuleNotFoundError: No module named 'allauth'
------
executor failed running [/bin/sh -c python manage.py makemigrations]: exit code: 1
ERROR: Service 'appseed-app' failed to build : Build failed
However, once it properly builds and runs I get this error when trying to use the social login feature to login and/or create a new account:
Exception Type: DoesNotExist
Exception Value: SocialApp matching query does not exist.
Exception Location: /usr/local/lib/python3.6/site-packages/django/db/models/query.py in get, line 399
The text was updated successfully, but these errors were encountered:
Out of the box, just running
docker-compose up
after cloning the repo gives this error which I fixed by adding the missingdjango-allauth
torequirements.txt
:However, once it properly builds and runs I get this error when trying to use the social login feature to login and/or create a new account:
The text was updated successfully, but these errors were encountered: