blechreiz-website/blechreiz/settings.py

234 lines
7.3 KiB
Python
Raw Normal View History

2013-05-28 15:20:06 +02:00
# Setting the path
import os
2013-05-28 15:20:06 +02:00
gettext = lambda s: s
PROJECT_PATH = os.path.abspath(os.path.dirname(__file__))
2023-01-03 20:13:35 +01:00
DATA_PATH = os.environ.get('BLECHREIZ_DATA', default=os.path.join(PROJECT_PATH, "data"))
2013-05-28 15:20:06 +02:00
# Django settings for blechreiz project.
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
2014-04-26 11:17:10 +02:00
('Martin Bauer', 'bauer_martin@gmx.de'),
2013-05-28 15:20:06 +02:00
)
MANAGERS = ADMINS
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
2023-01-03 20:13:35 +01:00
'NAME': os.path.join(DATA_PATH, 'database.sqlite'),
2013-05-28 15:20:06 +02:00
}
}
# Email
EMAIL_HOST = 'smtp.blechreiz.com'
EMAIL_HOST_USER = 'm02b721a'
EMAIL_HOST_PASSWORD = '9Hp4WG5bZ2WVPX5z'
EMAIL_USE_TLS = False
2013-05-28 15:20:06 +02:00
# 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 = []
# 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.
# In a Windows environment this must be set to your system time zone.
TIME_ZONE = 'Europe/Berlin'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
2013-06-30 11:01:12 +02:00
LANGUAGE_CODE = 'de'
2013-05-28 15:20:06 +02:00
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
# If you set this to False, Django will not use timezone-aware datetimes.
USE_TZ = True
# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/var/www/example.com/media/"
2023-01-03 20:13:35 +01:00
MEDIA_ROOT = PROJECT_PATH + "/media"
2013-05-28 15:20:06 +02:00
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
# Examples: "http://example.com/media/", "http://media.example.com/"
2013-06-30 11:01:12 +02:00
MEDIA_URL = '/media/'
2013-05-28 15:20:06 +02:00
# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/var/www/example.com/static/"
STATIC_ROOT = PROJECT_PATH + '/static_collection'
2013-05-28 15:20:06 +02:00
# URL prefix for static files.
# Example: "http://example.com/static/", "http://static.example.com/"
STATIC_URL = '/static/'
LOGIN_URL = "/musicians/login"
PUBLIC_URLS = ("^musicians/login/?$", "^musicians/login/usernames/?$", "^eventplanner_gcal/gcalApiCallback*")
2013-05-28 15:20:06 +02:00
# Additional locations of static files
STATICFILES_DIRS = (
2023-01-03 20:13:35 +01:00
#PROJECT_PATH + '/static',
2013-05-28 15:20:06 +02:00
# 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.
)
# List of finder classes that know how to find static files in
# various locations.
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
2013-05-28 15:20:06 +02:00
# Make this unique, and don't share it with anybody.
SECRET_KEY = 'x$8&9s6t%eeg=wyhar87934wh_s$dbpm(73g4ho&n)9_wogj6p'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
PROJECT_PATH + '/templates',
],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
# Insert your TEMPLATE_CONTEXT_PROCESSORS here or use this
# list if you haven't customized them:
'django.contrib.auth.context_processors.auth',
'django.template.context_processors.i18n',
'django.template.context_processors.request',
'django.template.context_processors.media',
'django.template.context_processors.static',
'sekizai.context_processors.sekizai',
],
},
},
]
2013-05-28 15:20:06 +02:00
MIDDLEWARE = (
'django.middleware.security.SecurityMiddleware',
2023-01-03 20:13:35 +01:00
'whitenoise.middleware.WhiteNoiseMiddleware',
2013-05-28 15:20:06 +02:00
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
2013-05-28 15:20:06 +02:00
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
#'blechreiz.middleware.EnforceLoginMiddleware',
'blechreiz.middleware.DetectDevice',
2013-05-28 15:20:06 +02:00
# Uncomment the next line for simple clickjacking protection:
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'blechreiz.urls'
# Python dotted path to the WSGI application used by Django's runserver.
WSGI_APPLICATION = 'blechreiz.wsgi.application'
2013-09-26 08:31:19 +02:00
2013-05-28 15:20:06 +02:00
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.admin',
'django.contrib.admindocs',
'crispy_forms', # better looking forms ( bootstrap )
'sekizai', # for the addtoblock directive in templates
'rest_framework', # for event management api
2013-09-26 08:31:19 +02:00
# Own Things
'bootstrapTheme', # Theme
'website', # Blechreiz Website in general
'musicians', # User Management
'eventplanner', # Event Management
'eventplanner_gcal', # Event Management Sync with Google Calendar
'simpleforum', # Messages ( Forum )
'location_field', # custom location field used in Event Management
'scoremanager', # manager of scores, repertoire etc.
# 'imagestore',
# 'sorl.thumbnail',
# 'tagging'
2013-05-28 15:20:06 +02:00
)
IMAGESTORE_TEMPLATE = "website/base.html"
2013-06-18 22:49:01 +02:00
REST_FRAMEWORK = {
'DEFAULT_PERMISSION_CLASSES': ('rest_framework.permissions.IsAuthenticated',),
2013-06-18 22:49:01 +02:00
'PAGINATE_BY': 10
}
2014-03-08 22:36:25 +01:00
GCAL_COUPLING = {
'eventPrefix': 'Blechreiz: ',
'developerKey': 'blechreiz-homepage',
'clientId': '34462582242-4kpdvvbi27ajt4u22uitqurpve9o8ipj.apps.googleusercontent.com',
'client_secret': 'y4t9XBrJdCODPTO5UvtONWWn',
2023-01-03 20:13:35 +01:00
'credentials_file': DATA_PATH + '/calendarCredentials.dat',
'push_url': "https://blechreiz.bauer.technology/eventplanner_gcal/gcalApiCallback",
2014-03-08 22:36:25 +01:00
}
2023-01-03 20:13:35 +01:00
GOOGLE_MAPS_API_KEY = 'AIzaSyCf9Lm5ckjmVd08scTOd7fB1dC_UCoumKg'
GCAL_SYNC_ENABLED = True
2014-03-08 22:36:25 +01:00
2013-05-28 15:20:06 +02:00
CRISPY_TEMPLATE_PACK = 'bootstrap'
# 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 when DEBUG=False.
# See http://docs.djangoproject.com/en/dev/topics/logging for
# more details on how to customize your logging configuration.
2013-05-28 15:20:06 +02:00
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'verbose': {
'format': '{levelname} {asctime} {module} {message}',
'style': '{',
},
'simple': {
'format': '{levelname} {asctime} {message}',
'style': '{',
},
},
2013-05-28 15:20:06 +02:00
'handlers': {
'file': {
'level': 'DEBUG',
'class': 'logging.FileHandler',
2023-01-03 20:13:35 +01:00
'filename': DATA_PATH + '/eventplanner.log',
2013-05-28 15:20:06 +02:00
},
},
'loggers': {
'eventplanner_gcal': {
'handlers': ['file'],
2013-05-28 15:20:06 +02:00
'level': 'DEBUG',
'propagate': True,
2013-05-28 15:20:06 +02:00
},
'eventplanner': {
'handler': ['file'],
2013-05-28 15:20:06 +02:00
'level': 'DEBUG',
'propagate': True,
}
},
}