summaryrefslogtreecommitdiff
path: root/scipy2017
diff options
context:
space:
mode:
authorprashantsinalkar2017-09-13 12:06:30 +0530
committerprashantsinalkar2017-09-13 12:06:30 +0530
commit590ff53b5f16a6afe5713f1ee23d85d916b5fb45 (patch)
tree1f6150446dd155a24d5a8688c8b278baba8b2edc /scipy2017
parent95c354d4049f56fa42bf8a4ddaa7056b6fba177e (diff)
downloadSciPy2017-590ff53b5f16a6afe5713f1ee23d85d916b5fb45.tar.gz
SciPy2017-590ff53b5f16a6afe5713f1ee23d85d916b5fb45.tar.bz2
SciPy2017-590ff53b5f16a6afe5713f1ee23d85d916b5fb45.zip
added sql port and host
Diffstat (limited to 'scipy2017')
-rwxr-xr-xscipy2017/settings.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/scipy2017/settings.py b/scipy2017/settings.py
index 0d85e28..447492f 100755
--- a/scipy2017/settings.py
+++ b/scipy2017/settings.py
@@ -93,6 +93,8 @@ STATICFILES_DIRS = (
ROOT_URLCONF = 'scipy2017.urls'
+URL_ROOT = '/'
+
WSGI_APPLICATION = 'scipy2017.wsgi.application'
@@ -105,8 +107,8 @@ DATABASES = {
'NAME': DBNAME, # Or path to database file if using sqlite3.
'USER': DBUSER,
'PASSWORD': DBPWD,
- 'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
- 'PORT': '',
+ 'HOST': '127.0.0.1', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
+ 'PORT': '3306',
}
}