considering that the SECRET_KEY is automatically generated every time a new project is created [1], wouldn't make more sense to have this logic on settings.py and generate a new value when loading the app instead of saving it as an actual hardcoded value there? eg:
#settings.py from django.utils.crypto import get_random_string chars = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)' SECRET_KEY = get_random_string(50, chars) is there any problems I'm not considering here? thanks. [1] https://github.com/django/django/blob/master/django/core/management/commands/startproject.py -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. For more options, visit https://groups.google.com/groups/opt_out.

