summaryrefslogtreecommitdiff
path: root/soc
diff options
context:
space:
mode:
authorJayaram R Pai2014-09-10 17:33:49 +0530
committerJayaram R Pai2014-09-10 17:33:49 +0530
commit4caaa04f8760beaa9c5947875fc16d49600ba8db (patch)
tree5251d4191e52f876ed57b7716d842e1ae145f025 /soc
parentbd7345a7f9fe0818071133c6ce752a163a60b9e8 (diff)
downloadscilab-on-cloud-4caaa04f8760beaa9c5947875fc16d49600ba8db.tar.gz
scilab-on-cloud-4caaa04f8760beaa9c5947875fc16d49600ba8db.tar.bz2
scilab-on-cloud-4caaa04f8760beaa9c5947875fc16d49600ba8db.zip
changed config vars
Diffstat (limited to 'soc')
-rw-r--r--soc/settings.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/soc/settings.py b/soc/settings.py
index 28fc1ad..134c52d 100644
--- a/soc/settings.py
+++ b/soc/settings.py
@@ -21,8 +21,8 @@ DATABASES = {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'soc', # Or path to database file if using sqlite3.
# The following settings are not used with sqlite3:
- 'USER': db_user,
- 'PASSWORD': db_pass,
+ 'USER': DB_USER,
+ 'PASSWORD': DB_PASS,
'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
'PORT': '', # Set to empty string for default.
},
@@ -30,8 +30,8 @@ DATABASES = {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'scilab', # Or path to database file if using sqlite3.
# The following settings are not used with sqlite3:
- 'USER': db_user,
- 'PASSWORD': db_pass,
+ 'USER': DB_USER,
+ 'PASSWORD': DB_PASS,
'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
'PORT': '', # Set to empty string for default.
}