Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

getting raise KeyError(key) KeyError: 'SECRET_KEY' with django on production settings

I've 2 separate settings files for production and development and a common base.py settings file
base.py

SECRET_KEY = r"!@#$%^&123456"

prod.py

from .base import *
SECRET_KEY = os.environ['SECRET_KEY']

manage.py

#!/usr/bin/env python
import os

import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "project.settings.dev")

from django.core.management import execute_from_command_line

execute_from_command_line(sys.argv)

When I enter this in terminal:

python manage.py shell --settings=entri.settings.prod

I get error:

raise KeyError(key)
KeyError: 'SECRET_KEY'

Help me, I'm new to django and python

like image 537
sidx Avatar asked Jan 22 '15 13:01

sidx


2 Answers

I think you are trying this locally, and don't have the SECRET_KEY setup in your environment.

Set it using

export SECRET_KEY="somesecretvalue"

and then running python manage.py shell --settings=entri.settings.prod should work fine.

like image 61
Anshul Goyal Avatar answered Nov 13 '22 08:11

Anshul Goyal


I use os.getenv('SECRET_KEY'), instead of os.environ['SECRET_KEY']

print os.getenv('SECRET_KEY')    #returns None if KEY doesn't exist
print os.getenv('SECRET_KEY', 0) #will return 0 if KEY doesn't exist 

my python version is 2.7.12

like image 2
chank Avatar answered Nov 13 '22 10:11

chank