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