*ARGS.TECH | BLOG | Generating SECRET_KEY for production deployment of Django project
Loading...
BLOG
Generating SECRET_KEY for production deployment of Django project


Django SECRET_KEY need for providing cryptographic signing (documentation). This value is stored in <your_app>/settings.py file. When you start new project it will be generated from built-in function (source code). For production deployment SECRET_KEY must be strong and reliably protected.


These steps help you for generating new SECRET_KEY value:


1. Activate your project's virtual environment:

source env/bin/activate


2. Enter in Django's manage.py shell:

python3 manage.py shell


3. Import get_random_secret_key() function:

from django.core.management.utils import get_random_secret_key


4. Just call get_random_secret_key() function:

get_random_secret_key()


Full example:

user@localhost:~/demo$ source env/bin/activate
(env) user@localhost:~/demo$ python3 manage.py shell
Python 3.11.2 (main, Aug 26 2024, 07:20:54) [GCC 12.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from django.core.management.utils import get_random_secret_key
>>> get_random_secret_key()
'(#jdao11q1)kw1rs40z2$b^kntmw3ts9)wg2r*zk3z0_^t&hha'
Support me on Patreon
#backend #configuration #django #python #secret-key #security #settings
Top button
© *ARGS.TECH
2025
v 2.4.0