django-react-blog
django-react-blog copied to clipboard
Login shows Bad Login Info
I've followed all the steps mentioned in readme docker-compose up docker exec -i -t backend /bin/bash python3.5 manage.py migrate python3.5 manage.py createsuperuser (create root user)
But when I goto localhost/login and login, the webpage show "Bad Login Info"
Hey @nggary . Most likely docker backend image was silently failing to build and start. That's why you could access frontend, but when trying to login you are accessing data from db using django restframework, while the backend has failed to start to begin with.
It has been fixed in this PR