diff --git a/.gitignore b/.gitignore index b81713b..2dff3aa 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,3 @@ localsettings.py data.db *.wpr facebook.py -settings.py diff --git a/example_project/settings.example.py b/example_project/settings.py similarity index 97% rename from example_project/settings.example.py rename to example_project/settings.py index 009a620..6210a65 100644 --- a/example_project/settings.example.py +++ b/example_project/settings.py @@ -10,7 +10,7 @@ MANAGERS = ADMINS DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. -DATABASE_NAME = 'dev.db' # Or path to database file if using sqlite3. +DATABASE_NAME = 'data.db' # Or path to database file if using sqlite3. DATABASE_USER = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.