diff --git a/note_kfet/settings/production.py b/note_kfet/settings/production.py index 834c9633..c3283ad4 100644 --- a/note_kfet/settings/production.py +++ b/note_kfet/settings/production.py @@ -11,11 +11,11 @@ DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql', - 'NAME': 'mydatabase', - 'USER': 'mydatabaseuser', - 'PASSWORD': 'mypassword', + 'NAME': 'note_db', + 'USER': 'note', + 'PASSWORD': 'update_in_secrets.py', 'HOST': '127.0.0.1', - 'PORT': '5432', + 'PORT': '', } } diff --git a/note_kfet/settings/secrets.py_example b/note_kfet/settings/secrets.py_example index 0f1394f4..77662a48 100644 --- a/note_kfet/settings/secrets.py_example +++ b/note_kfet/settings/secrets.py_example @@ -1,2 +1,2 @@ - -SECRET_KEY = 'CHANGE_ME_IN_LOCAL_SETTINGS!' +DATABASE['default']['PASSWORD'] ='CHANGE_ME' +SECRET_KEY = 'CHANGE_ME'