From 189264af51f878d1026b8152fde59cabfbdf423c Mon Sep 17 00:00:00 2001 From: Helmy Giacoman Date: Fri, 15 Oct 2010 14:39:43 -0600 Subject: [PATCH] settings local dist --- .gitignore | 1 - settings_local.py | 23 ----------------------- settings_local.py_dist | 23 +++++++++++++++++++++++ 3 files changed, 23 insertions(+), 24 deletions(-) delete mode 100644 settings_local.py create mode 100644 settings_local.py_dist diff --git a/.gitignore b/.gitignore index 676d9eb..cdc703c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ nbproject/ -fed/settings-local.py *.pyc fed/encuesta/migrations/ fed/lugar/migrations/ diff --git a/settings_local.py b/settings_local.py deleted file mode 100644 index 39a1681..0000000 --- a/settings_local.py +++ /dev/null @@ -1,23 +0,0 @@ -import os - -PROJECT_DIR = os.path.dirname(__file__) -DEBUG = True -TEMPLATE_DEBUG = DEBUG - -ADMINS = ( - # ('Your Name', 'your_email@domain.com'), -) - -MANAGERS = ADMINS - -DATABASES = { - 'default': { - 'ENGINE': 'mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': 'simasnio_fed', # Or path to database file if using sqlite3. - 'USER': 'root', # Not used with sqlite3. - 'PASSWORD': 'gnomekx', # Not used with sqlite3. - 'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3. - 'PORT': '3306', # Set to empty string for default. Not used with sqlite3. - } -} - diff --git a/settings_local.py_dist b/settings_local.py_dist new file mode 100644 index 0000000..c29bbbe --- /dev/null +++ b/settings_local.py_dist @@ -0,0 +1,23 @@ +import os + +PROJECT_DIR = os.path.dirname(__file__) +DEBUG = True +TEMPLATE_DEBUG = DEBUG + +ADMINS = ( + # ('Your Name', 'your_email@domain.com'), +) + +MANAGERS = ADMINS + +DATABASES = { + 'default': { + 'ENGINE': '', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. + 'NAME': '', # 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. + } +} +