| 
					
				 | 
			
			
				@@ -9,12 +9,15 @@ ADMINS = ( 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 MANAGERS = ADMINS 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-DATABASE_ENGINE = ''           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+DATABASE_ENGINE = ''           # 'postgresql_psycopg2', 'postgresql', 'mysql', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                               # 'sqlite3' or 'oracle'. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 DATABASE_NAME = ''             # Or path to database file if using sqlite3. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 DATABASE_USER = ''             # Not used with sqlite3. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 DATABASE_PASSWORD = ''         # Not used with sqlite3. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+DATABASE_HOST = ''             # Set to empty string for localhost. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                               # Not used with sqlite3. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+DATABASE_PORT = ''             # Set to empty string for default. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                               # Not used with sqlite3. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 INSTALLED_APPS = ( 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     'django.contrib.auth', 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -64,8 +67,8 @@ MIDDLEWARE_CLASSES = ( 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 ROOT_URLCONF = 'demoproject.urls' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 TEMPLATE_DIRS = ( 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    # Put strings here, like "/home/html/django_templates" or 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    # "C:/www/django/templates". 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     # Always use forward slashes, even on Windows. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     # Don't forget to use absolute paths, not relative paths. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				- 
			 |