Login issue
After launching the template, I get an "invalid username or password" message after copying the same credentials present in the config file. I have tried deleting and recreating the project I'm not sure why the supplied credentials are failing. Is having SMTP enabled a requirement or no? I am in the process of setting a MailGun domain to handle email.
Hello,
I thought I had the same issue, but #339 made me realise it was a problem with docker volumes.
Be sure to delete the database volume with docker volume rm projectname_app-db-data volume before recreating the project.
if you regenerating the project or restarting the project make sure you drop all the previous database table from postgres data in the docker. it's really hidden in the docker. here's what i did solve the issue using this stackoverflow method
docker volume rm projectname_app-db-data
@MeGilles , my project name is mytestapp, so I run docker volume rm mytestapp_app-db-data, but it indicates there's no such volume.
In my case, even after brutally remove everything Docker related, back-end login at localhost:80 was still not working.
Only after running the front-end (as suggested in #339 ) with
cd frontend
npm install
npm run serve
the front-end login at localhost:8080 worked fine.
Is this normal behavior or am I missing something about the back-end login?
My problem was that I was developing on a remote server with no domain so I needed to add the public IP address to the .env and frontend/.env instead of the domain set by default.
hope it helps