diff options
author | Jayaram R Pai | 2014-09-10 17:33:49 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-09-10 17:33:49 +0530 |
commit | 4caaa04f8760beaa9c5947875fc16d49600ba8db (patch) | |
tree | 5251d4191e52f876ed57b7716d842e1ae145f025 /soc | |
parent | bd7345a7f9fe0818071133c6ce752a163a60b9e8 (diff) | |
download | scilab-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.py | 8 |
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. } |