Skip to content

Commit

Permalink
update settings so include localsettings
Browse files Browse the repository at this point in the history
  • Loading branch information
stuchalk committed Jan 3, 2023
1 parent 7922165 commit 78a5fb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sciflow/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"""

import os
from sciflow.localsettings import *

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
Expand Down Expand Up @@ -113,8 +114,8 @@
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'sciflow',
'USER': 'sciflow',
'PASSWORD': 'letthedatafl0w',
'USER': sfuser,
'PASSWORD': sfpass,
'HOST': '127.0.0.1',
'PORT': '3307'
},
Expand All @@ -130,7 +131,6 @@

DATABASES = UNFDB


# Password validation
# https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators
ua = 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator'
Expand Down

0 comments on commit 78a5fb7

Please sign in to comment.