blob: 40e839aaf97a53817fb24bcf138f386dd29c45d0 [file] [log] [blame]
Tony Mack7130ac32013-03-22 21:58:00 -04001# Django settings for planetstack project.
2
3DEBUG = True
4TEMPLATE_DEBUG = DEBUG
5
6ADMINS = (
7 # ('Your Name', 'your_email@example.com'),
8)
9
10MANAGERS = ADMINS
11
Siobhan Tully53437282013-04-26 19:30:27 -040012AUTH_USER_MODEL = 'core.PLUser'
13
Tony Mack281336b2013-03-29 12:19:25 -040014from plstackapi.planetstack.config import Config
15config = Config()
Tony Mack7130ac32013-03-22 21:58:00 -040016DATABASES = {
17 'default': {
18 'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
Tony Mack281336b2013-03-29 12:19:25 -040019 'NAME': config.db_name, # Or path to database file if using sqlite3.
Tony Mack7130ac32013-03-22 21:58:00 -040020 # The following settings are not used with sqlite3:
Tony Mack281336b2013-03-29 12:19:25 -040021 'USER': config.db_user,
22 'PASSWORD': config.db_password,
23 'HOST': config.db_host, # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
Tony Mack7130ac32013-03-22 21:58:00 -040024 'PORT': '', # Set to empty string for default.
25 }
26}
27
28# Hosts/domain names that are valid for this site; required if DEBUG is False
29# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
30ALLOWED_HOSTS = []
31
32# Local time zone for this installation. Choices can be found here:
33# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
34# although not all choices may be available on all operating systems.
35# In a Windows environment this must be set to your system time zone.
36TIME_ZONE = 'America/New_York'
37
38# Language code for this installation. All choices can be found here:
39# http://www.i18nguy.com/unicode/language-identifiers.html
40LANGUAGE_CODE = 'en-us'
41
42SITE_ID = 1
43
44# If you set this to False, Django will make some optimizations so as not
45# to load the internationalization machinery.
46USE_I18N = True
47
48# If you set this to False, Django will not format dates, numbers and
49# calendars according to the current locale.
50USE_L10N = True
51
52# If you set this to False, Django will not use timezone-aware datetimes.
53USE_TZ = True
54
55# Absolute filesystem path to the directory that will hold user-uploaded files.
56# Example: "/var/www/example.com/media/"
57MEDIA_ROOT = ''
58
59# URL that handles the media served from MEDIA_ROOT. Make sure to use a
60# trailing slash.
61# Examples: "http://example.com/media/", "http://media.example.com/"
62MEDIA_URL = ''
63
64# Absolute path to the directory static files should be collected to.
65# Don't put anything in this directory yourself; store your static files
66# in apps' "static/" subdirectories and in STATICFILES_DIRS.
67# Example: "/var/www/example.com/static/"
68STATIC_ROOT = ''
69
70# URL prefix for static files.
71# Example: "http://example.com/static/", "http://static.example.com/"
72STATIC_URL = '/static/'
73
74# Additional locations of static files
75STATICFILES_DIRS = (
76 # Put strings here, like "/home/html/static" or "C:/www/django/static".
77 # Always use forward slashes, even on Windows.
78 # Don't forget to use absolute paths, not relative paths.
79)
80
81# List of finder classes that know how to find static files in
82# various locations.
83STATICFILES_FINDERS = (
84 'django.contrib.staticfiles.finders.FileSystemFinder',
85 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
86# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
87)
88
89# Make this unique, and don't share it with anybody.
90SECRET_KEY = 'i0=a)c7_#2)5m%k_fu#%53xap$tlqc+#&z5as+bl7&)(@be_f9'
91
92# List of callables that know how to import templates from various sources.
93TEMPLATE_LOADERS = (
94 'django.template.loaders.filesystem.Loader',
95 'django.template.loaders.app_directories.Loader',
96# 'django.template.loaders.eggs.Loader',
97)
98
99MIDDLEWARE_CLASSES = (
100 'django.middleware.common.CommonMiddleware',
101 'django.contrib.sessions.middleware.SessionMiddleware',
102 'django.middleware.csrf.CsrfViewMiddleware',
103 'django.contrib.auth.middleware.AuthenticationMiddleware',
104 'django.contrib.messages.middleware.MessageMiddleware',
105 # Uncomment the next line for simple clickjacking protection:
106 # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
107)
108
Tony Mack7d97f062013-04-09 20:25:08 -0400109ROOT_URLCONF = 'plstackapi.core.urls'
Tony Mack7130ac32013-03-22 21:58:00 -0400110
111# Python dotted path to the WSGI application used by Django's runserver.
Tony Mackb1a54fb2013-03-29 12:06:46 -0400112WSGI_APPLICATION = 'plstackapi.planetstack.wsgi.application'
Tony Mack7130ac32013-03-22 21:58:00 -0400113
114TEMPLATE_DIRS = (
115 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
116 # Always use forward slashes, even on Windows.
117 # Don't forget to use absolute paths, not relative paths.
118)
119
120INSTALLED_APPS = (
121 'django.contrib.auth',
122 'django.contrib.contenttypes',
123 'django.contrib.sessions',
124# 'django.contrib.sites',
125 'django.contrib.messages',
126 'django.contrib.staticfiles',
127 # Uncomment the next line to enable the admin:
128 'django.contrib.admin',
129 # Uncomment the next line to enable admin documentation:
130 'django.contrib.admindocs',
131 'rest_framework',
132 'django_extensions',
Tony Mack7130ac32013-03-22 21:58:00 -0400133 'django_evolution',
Tony Mack140c47c2013-04-09 19:13:08 -0400134 #'plstackapi.planetstack',
Tony Mack176c5f12013-04-09 18:55:07 -0400135 'plstackapi.core',
Tony Mack7130ac32013-03-22 21:58:00 -0400136)
137
138# A sample logging configuration. The only tangible logging
139# performed by this configuration is to send an email to
140# the site admins on every HTTP 500 error when DEBUG=False.
141# See http://docs.djangoproject.com/en/dev/topics/logging for
142# more details on how to customize your logging configuration.
143LOGGING = {
144 'version': 1,
145 'disable_existing_loggers': False,
146 'filters': {
147 'require_debug_false': {
148 '()': 'django.utils.log.RequireDebugFalse'
149 }
150 },
151 'handlers': {
152 'mail_admins': {
153 'level': 'ERROR',
154 'filters': ['require_debug_false'],
155 'class': 'django.utils.log.AdminEmailHandler'
156 }
157 },
158 'loggers': {
159 'django.request': {
160 'handlers': ['mail_admins'],
161 'level': 'ERROR',
162 'propagate': True,
163 },
164 }
165}