summaryrefslogtreecommitdiff
path: root/scipy2017/settings.py
diff options
context:
space:
mode:
authorprashantsinalkar2017-09-13 14:51:18 +0530
committerprashantsinalkar2017-09-13 14:52:41 +0530
commit22e7aced6719f31db40f1649b77bec3f73009254 (patch)
tree08d6485429f64af490370b75a24ed69bbb293673 /scipy2017/settings.py
parent260e3b43f09d0610632fcebec58fac1417e31b2b (diff)
parenta0ba6023fbf5a250708056c0ce9564c2e2514606 (diff)
downloadSciPy2017-22e7aced6719f31db40f1649b77bec3f73009254.tar.gz
SciPy2017-22e7aced6719f31db40f1649b77bec3f73009254.tar.bz2
SciPy2017-22e7aced6719f31db40f1649b77bec3f73009254.zip
fixed into devel
Diffstat (limited to 'scipy2017/settings.py')
-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',
}
}