-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alex Dijkstra
committed
Jul 26, 2015
1 parent
1584d72
commit 8eb0f90
Showing
1 changed file
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
""" | ||
This is an example settings/local.py file. | ||
These settings overrides what's in settings/base.py | ||
""" | ||
|
||
from . import base | ||
|
||
|
||
# To extend any settings from settings/base.py here's an example. | ||
# If you don't need to extend any settings from base.py, you do not need | ||
# to import base above | ||
INSTALLED_APPS = base.INSTALLED_APPS + ('django_nose',) | ||
|
||
DATABASES = { | ||
'default': { | ||
'ENGINE': 'django.db.backends.sqlite3', | ||
'NAME': 'db/development.sqlite3', | ||
'USER': '', | ||
'PASSWORD': '', | ||
'HOST': '', | ||
'PORT': '', | ||
#'OPTIONS': { | ||
# 'init_command': 'SET storage_engine=InnoDB', | ||
# 'charset' : 'utf8', | ||
# 'use_unicode' : True, | ||
#}, | ||
#'TEST_CHARSET': 'utf8', | ||
#'TEST_COLLATION': 'utf8_general_ci', | ||
}, | ||
# 'slave': { | ||
# ... | ||
# }, | ||
} | ||
|
||
# Recipients of traceback emails and other notifications. | ||
ADMINS = ( | ||
# ('Your Name', 'your_email@domain.com'), | ||
) | ||
MANAGERS = ADMINS | ||
|
||
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' | ||
|
||
CACHES = { | ||
'default': { | ||
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', | ||
} | ||
} | ||
|
||
# SECURITY WARNING: don't run with debug turned on in production! | ||
# Debugging displays nice error messages, but leaks memory. Set this to False | ||
# on all server instances and True only for development. | ||
DEBUG = TEMPLATE_DEBUG = True | ||
|
||
# Is this a development instance? Set this to True on development/master | ||
# instances and False on stage/prod. | ||
DEV = True | ||
|
||
# Hosts/domain names that are valid for this site; required if DEBUG is False | ||
# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts | ||
ALLOWED_HOSTS = [] | ||
|
||
# SECURITY WARNING: keep the secret key used in production secret! | ||
# Hardcoded values can leak through source control. Consider loading | ||
# the secret key from an environment variable or a file instead. | ||
SECRET_KEY = '{{ secret_key }}' | ||
|
||
# Uncomment these to activate and customize Celery: | ||
# CELERY_ALWAYS_EAGER = False # required to activate celeryd | ||
# BROKER_HOST = 'localhost' | ||
# BROKER_PORT = 5672 | ||
# BROKER_USER = 'django' | ||
# BROKER_PASSWORD = 'django' | ||
# BROKER_VHOST = 'django' | ||
# CELERY_RESULT_BACKEND = 'amqp' | ||
|
||
## Log settings | ||
|
||
# Remove this configuration variable to use your custom logging configuration | ||
LOGGING_CONFIG = None | ||
LOGGING = { | ||
'version': 1, | ||
'loggers': { | ||
'{{ project_name }}': { | ||
'level': "DEBUG" | ||
} | ||
} | ||
} | ||
|
||
INTERNAL_IPS = ('127.0.0.1') |