diff options
author | Akshen | 2018-10-12 11:01:52 +0530 |
---|---|---|
committer | Akshen | 2018-10-12 11:01:52 +0530 |
commit | b7a9ed69460d1843bb6be3721ae494ccccfdbf7c (patch) | |
tree | 5e7a55a40672ebd040acbe914ad7549588e4d043 /nccps2018/settings.py | |
parent | d12caaf4506552fd97dc5b6c961b08412650b169 (diff) | |
parent | df5b673cfb13f4ce66146723384172ee981a6a07 (diff) | |
download | nccps-2018-b7a9ed69460d1843bb6be3721ae494ccccfdbf7c.tar.gz nccps-2018-b7a9ed69460d1843bb6be3721ae494ccccfdbf7c.tar.bz2 nccps-2018-b7a9ed69460d1843bb6be3721ae494ccccfdbf7c.zip |
Merge branch 'master' of https://github.com/FOSSEE/nccps-2018 into develop
Diffstat (limited to 'nccps2018/settings.py')
-rw-r--r-- | nccps2018/settings.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nccps2018/settings.py b/nccps2018/settings.py index bf7f493..db36bd8 100644 --- a/nccps2018/settings.py +++ b/nccps2018/settings.py @@ -80,11 +80,11 @@ WSGI_APPLICATION = 'nccps2018.wsgi.application' DATABASES = { 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), - 'TEST': { - 'NAME': 'mytestdatebase', - }, + 'ENGINE': 'django.db.backends.mysql', + 'NAME': DB_NAME_DEFAULT, # Or path to database file if using sqlite3. + 'USER': DB_USER_DEFAULT, + 'PASSWORD': DB_PASS_DEFAULT, + 'HOST': DB_HOST_DEFAULT, } } |