[Fixed]-Django SECRET_KEY unique for same project on each workstation?

1👍

The secret key of a Django project is unique to that project. It is created when you start the Django project. So if you are sharing a common code base and just working on different workstations, then yes it would be the same secret key. If each workstation is hosting a different Django code base then you could use different secret keys.

Leave a comment