From ae49234e1c85b8134256e094b4118ae6402d237c Mon Sep 17 00:00:00 2001 From: Sanj Date: Mon, 21 Nov 2011 22:57:53 +0530 Subject: [PATCH] local settings example --- bestroutes/local_settings.py.example | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bestroutes/local_settings.py.example diff --git a/bestroutes/local_settings.py.example b/bestroutes/local_settings.py.example new file mode 100644 index 0000000..97f8462 --- /dev/null +++ b/bestroutes/local_settings.py.example @@ -0,0 +1,12 @@ +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. + 'NAME': 'bestroutes', # Or path to database file if using sqlite3. + 'USER': '', # Not used with sqlite3. + '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. + } +} + +DEBUG = True