[Answered ]-Secret Key in Django when upload to Github

1👍

the secret key is used for generating cryptographic keys in your application like session cookies and password reset tokens. If someone has access to your secret key, they can generate their own hashes for your site. Here’s a good rabbit hole to go down for more detailed information on the risks of exposing your secret key

👤Nnaobi

Leave a comment