user3296893
user3296893

Reputation: 43

ImproperlyConfigured("The SECRET_KEY setting must not be empty.")

when I run "python manage.py run server" it gives following error

ImproperlyConfigured("The SECRET_KEY setting must not be empty.")
django.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty.

I am using django version 1.6.5. Thank you.

Upvotes: 2

Views: 1057

Answers (1)

Adarsh Tiwari
Adarsh Tiwari

Reputation: 56

In your settings.py file SECRET_KEY would be empty. you have to add some secret key in SECRET_KEY in settings.py file of your project.

Upvotes: 4

Related Questions