diff options
author | Prabhu Ramachandran | 2014-06-06 17:28:57 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2014-06-06 17:28:57 +0530 |
commit | e50eb8426d5f22fd35a2575cd3f4617226bc1a01 (patch) | |
tree | af75e47255f39402c79ded6f75399a47084584ff /testapp/settings.py | |
parent | 8b5d13df2a8f4ac3acc075c522128722b987e57b (diff) | |
parent | 77caf5d44ab14d56efd4acbc65a6dd2d78c1c1a6 (diff) | |
download | online_test-e50eb8426d5f22fd35a2575cd3f4617226bc1a01.tar.gz online_test-e50eb8426d5f22fd35a2575cd3f4617226bc1a01.tar.bz2 online_test-e50eb8426d5f22fd35a2575cd3f4617226bc1a01.zip |
Merge pull request #24 from prathamesh920/spoken_tutorial
Spoken tutorial authentication
Diffstat (limited to 'testapp/settings.py')
-rw-r--r-- | testapp/settings.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testapp/settings.py b/testapp/settings.py index 6015f0c..668eca0 100644 --- a/testapp/settings.py +++ b/testapp/settings.py @@ -23,6 +23,13 @@ SERVER_TIMEOUT = 2 # host.org/foo/exam set URL_ROOT='/foo' URL_ROOT = '' +# Authentication using other database table. +# Comment the line below if you want the authentication to be done +# using django user table. +#AUTHENTICATION_BACKENDS = ('myauthentication.backend.MyBackend',) + +# Router for database +#DATABASE_ROUTERS = ['myauthentication.router.MyDatabaseRouter',] ADMINS = ( # ('Your Name', 'your_email@example.com'), @@ -41,6 +48,14 @@ DATABASES = { 'PASSWORD': '', # Not used with sqlite3. 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. 'PORT': '', # Set to empty string for default. Not used with sqlite3. + }, + 'spoken_tutorial' : { + 'ENGINE' : 'django.db.backends.mysql', + 'NAME' : 'YOUR DATABASE', + 'USER' : 'YOUR USERNAME', + 'PASSWORD': 'YOUR PASSWORD', + 'HOST' :'', + 'PORT' :'', } } |