File diff 5d5ad00b179b → 509ed963b5e1
projtest/projtest/settings.py
Show inline comments
 
@@ -10,7 +10,7 @@ MANAGERS = ADMINS
 

	
 
DATABASES = {
 
    'default': {
 
        'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
 
        'ENGINE': 'django.db.backends.sqlite3',  # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
 
        'NAME': 'projtest.db',                      # Or path to database file if using sqlite3.
 
        'USER': '',                      # Not used with sqlite3.
 
        'PASSWORD': '',                  # Not used with sqlite3.
 
@@ -167,7 +167,7 @@ LOGGING = {
 
}
 

	
 
# View that should be called for log-in action.
 
LOGIN_URL="login"
 
LOGIN_URL = "login"
 

	
 
# Use custom test runner.
 
TEST_RUNNER = 'discover_runner.DiscoverRunner'