From 94409d7fe139df90b0842f79ed727d545355bb39 Mon Sep 17 00:00:00 2001 From: Sanj Date: Sat, 17 Sep 2011 22:48:20 +0530 Subject: [PATCH] local_settings example --- trubox/local_settings.py.example | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 trubox/local_settings.py.example diff --git a/trubox/local_settings.py.example b/trubox/local_settings.py.example new file mode 100644 index 0000000..1e0d509 --- /dev/null +++ b/trubox/local_settings.py.example @@ -0,0 +1,10 @@ +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. + 'NAME': 'trubox', # Or path to database file if using sqlite3. + 'USER': 'root', # Not used with sqlite3. + 'PASSWORD': 'mypassword', # 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. + } +}