From 88963ad2a4991260ea106d18bea55ad019446b4c Mon Sep 17 00:00:00 2001 From: Parth Buch Date: Fri, 20 Jul 2012 16:13:10 +0530 Subject: Removed the database settings from production.py, now relies on local.py --- testapp/production.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'testapp') diff --git a/testapp/production.py b/testapp/production.py index be3d200..f4d88e2 100644 --- a/testapp/production.py +++ b/testapp/production.py @@ -2,13 +2,5 @@ from testapp.settings import * DEBUG=False TEMPLATE_DEBUG=DEBUG - - -DATABASES["default"]["ENGINE"] = 'django.db.backends.mysql' -DATABASES["default"]["NAME"] = 'online_test' -DATABASES["default"]["USER"] = 'online_test_user' - -from testapp.local import DATABASE_PASSWORD -# Imports DATABASE_PASSWORD from testapp/local.py that is not part of git repo -DATABASES["default"]["PASSWORD"] = DATABASE_PASSWORD +from testapp.local import * -- cgit