Topic starter 19/08/2021 12:29 am
Is there a function for generating settings.SECRET_KEY in Django?
myTechMint liked
20/08/2021 11:17 pm
Run the below command if you have Python already installed and can be accessed with "python" or just replace the below command with python2 or python3 or the version you have.
python -c 'from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())'
Neha liked