I made forgot password reset for my Django hosted Heroku app. I have been finding it difficult to hide my Gmail account, especially the password for production and security reasons but it couldn't be found.
I hid it in the Heroku config var
EMAIL_HOST_USER 'email address'
EMAIL_HOST_PASSWORD 'email address password'
but it was not still working.
I also tried using config, but the .env file is not pushed to GitHub because it is hidden in .gitignore and Heroku can't access it.
Is there any other way I can set this??