aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Chatzimichos <tampakrap@gentoo.org>2011-05-30 02:50:56 +0300
committerTheo Chatzimichos <tampakrap@gentoo.org>2011-05-30 02:50:56 +0300
commit3c4b393c637c2b67c12824207d8c59e477ce2511 (patch)
tree7c12d1720b3077800b158231eeee7997c29cfea6 /settings
parentCorrect mistake in .gitignore, sample files should not be excluded, the (diff)
downloadidentity.gentoo.org-3c4b393c637c2b67c12824207d8c59e477ce2511.tar.gz
identity.gentoo.org-3c4b393c637c2b67c12824207d8c59e477ce2511.tar.bz2
identity.gentoo.org-3c4b393c637c2b67c12824207d8c59e477ce2511.zip
Remove the accidentally added local file
Diffstat (limited to 'settings')
-rw-r--r--settings/20-development.conf79
1 files changed, 0 insertions, 79 deletions
diff --git a/settings/20-development.conf b/settings/20-development.conf
deleted file mode 100644
index d44efd1..0000000
--- a/settings/20-development.conf
+++ /dev/null
@@ -1,79 +0,0 @@
-# Django production settings for okupy project.
-
-DEBUG = True
-TEMPLATE_DEBUG = DEBUG
-
-ADMINS = (
- # ('Your Name', 'your_email@example.com'),
-)
-
-MANAGERS = ADMINS
-
-DATABASES = {
- 'default': {
- 'ENGINE': 'django.db.backends.', # 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.
- }
-}
-
-# Local time zone for this installation. Choices can be found here:
-# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
-# although not all choices may be available on all operating systems.
-# On Unix systems, a value of None will cause Django to use the same
-# timezone as the operating system.
-# If running in a Windows environment this must be set to the same as your
-# system time zone.
-TIME_ZONE = 'America/Chicago'
-
-# Language code for this installation. All choices can be found here:
-# http://www.i18nguy.com/unicode/language-identifiers.html
-LANGUAGE_CODE = 'en-us'
-
-SITE_ID = 1
-
-# If you set this to False, Django will make some optimizations so as not
-# to load the internationalization machinery.
-USE_I18N = True
-
-# If you set this to False, Django will not format dates, numbers and
-# calendars according to the current locale
-USE_L10N = True
-
-# Additional locations of static files
-STATICFILES_DIRS = (
- # Put strings here, like "/home/html/static" or "C:/www/django/static".
- # Always use forward slashes, even on Windows.
- # Don't forget to use absolute paths, not relative paths.
-)
-
-# Make this unique, and don't share it with anybody.
-SECRET_KEY = '342e68qvy7m%3q3ar@=t0s202-n0#1m_s^p0ev-=pph50v$#bd'
-
-# A sample logging configuration. The only tangible logging
-# performed by this configuration is to send an email to
-# the site admins on every HTTP 500 error.
-# See http://docs.djangoproject.com/en/dev/topics/logging for
-# more details on how to customize your logging configuration.
-LOGGING = {
- 'version': 1,
- 'disable_existing_loggers': False,
- 'handlers': {
- 'mail_admins': {
- 'level': 'ERROR',
- 'class': 'django.utils.log.AdminEmailHandler'
- }
- },
- 'loggers': {
- 'django.request': {
- 'handlers': ['mail_admins'],
- 'level': 'ERROR',
- 'propagate': True,
- },
- }
-}
-
-AUTH_LDAP_SERVER_URI = 'ldap://localhost'