diff options
Diffstat (limited to 'PythonTBC/settings.py')
-rw-r--r-- | PythonTBC/settings.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/PythonTBC/settings.py b/PythonTBC/settings.py index 7c6dbcc..51f4364 100644 --- a/PythonTBC/settings.py +++ b/PythonTBC/settings.py @@ -13,13 +13,14 @@ ADMINS = ( MANAGERS = ADMINS PROJDIR = abspath(dirname(__file__)) +DATABASE_USER = db_user DATABASE_PASSWORD = db_pass DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. 'NAME': 'pythontbc', # Or path to database file if using sqlite3. # The following settings are not used with sqlite3: - 'USER': 'pythontbc', + 'USER': DATABASE_USER, 'PASSWORD': DATABASE_PASSWORD, 'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP. 'PORT': '', # Set to empty string for default. @@ -118,8 +119,8 @@ TEMPLATE_DIRS = ( # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. join(PROJDIR, '../tbc/templates'), + join(PROJDIR, '../tbc/static/uploads') ) - INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', |