Skip to content

Commit

Permalink
Added separate (and new) SECRET_KEY's for configurations.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennissiemensma committed Apr 7, 2016
1 parent ea7e1e4 commit 4cff133
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dsmrreader/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from django.utils.version import get_version


VERSION = (1, 0, 0, 'rc', 5)
VERSION = (1, 0, 0, 'rc', 6)

__version__ = get_version(VERSION)
2 changes: 1 addition & 1 deletion dsmrreader/config/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'wa9z!3i+qg@ii(dwir(g*3hr#^e7(#(sej6onr%ux(-!0)+8y('
SECRET_KEY = 'As]7aV!PRYS>z"UtigJn(T{)p8y=}0iEfj&<#Ykx3"=Uk?M^B,'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
Expand Down
3 changes: 3 additions & 0 deletions dsmrreader/provisioning/django/mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@
'CONN_MAX_AGE': 300,
}
}

# Change me when exposing your application to the outside world using the Internet!
SECRET_KEY = 'aUqm$#!1yIILyt3^hDDy`Fv!&%kM>aI&#H(}a0JV~fec;rS%tH'
3 changes: 3 additions & 0 deletions dsmrreader/provisioning/django/postgresql.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@
'CONN_MAX_AGE': 300,
}
}

# Change me when exposing your application to the outside world using the Internet!
SECRET_KEY = 'ta;<tzc;rHBVG:,|gM223ucNrz|y4,DcSK`nnWA9vBW1nXF%,8'

0 comments on commit 4cff133

Please sign in to comment.