diff options
author | Akshen | 2018-11-02 15:24:00 +0530 |
---|---|---|
committer | Akshen | 2018-11-02 15:24:00 +0530 |
commit | b42cc399fd70cc45ca7a5e075b39885eeec97d30 (patch) | |
tree | 092501202b3462f18720d842754fbcd065ef9cc8 /nccps2018/settings.py | |
parent | d61a7d730f1fe6ef863ffec51c169cb261c2a86b (diff) | |
download | nccps-2018-b42cc399fd70cc45ca7a5e075b39885eeec97d30.tar.gz nccps-2018-b42cc399fd70cc45ca7a5e075b39885eeec97d30.tar.bz2 nccps-2018-b42cc399fd70cc45ca7a5e075b39885eeec97d30.zip |
Add instructions for dwsim flowsheet test
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 9ce4c32..dae82f5 100644 --- a/nccps2018/settings.py +++ b/nccps2018/settings.py @@ -80,11 +80,11 @@ WSGI_APPLICATION = 'nccps2018.wsgi.application' DATABASES = { 'default': { - '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, + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + 'TEST': { + 'NAME': 'mytestdatabase', + }, } } |