diff options
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. } |