284 lines
8.1 KiB
Python
284 lines
8.1 KiB
Python
"""
|
|
Django settings for procat2 project.
|
|
|
|
Generated by 'django-admin startproject' using Django 2.1.7.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/2.1/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/2.1/ref/settings/
|
|
"""
|
|
from __future__ import absolute_import, unicode_literals
|
|
|
|
import os
|
|
|
|
# ^^^ The above is required if you want to import from the celery
|
|
# library. If you don't have this then `from celery.schedules import`
|
|
# becomes `proj.celery.schedules` in Python 2.x since it allows
|
|
# for relative imports by default.
|
|
|
|
from django.urls import reverse_lazy
|
|
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
TEMPLATES_DIR = os.path.join(BASE_DIR, 'templates')
|
|
FRONTEND_DIR = os.path.join(BASE_DIR, 'cateditor')
|
|
|
|
# bring in ansible-defined settings
|
|
from .settings_ansible import *
|
|
|
|
# for 500 errors logging
|
|
ADMINS = [('Seth Ladygo', 'alx-admin@procatalog.io')]
|
|
|
|
# for broken link reporting
|
|
MANAGERS = [('Seth Ladygo', 'alx-admin@procatalog.io')]
|
|
|
|
# For deployment, see
|
|
# https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
|
|
|
|
# Security settings recommended by
|
|
# ./manage.py check --deploy
|
|
SECURE_CONTENT_TYPE_NOSNIFF = True
|
|
SECURE_BROWSER_XSS_FILTER = True
|
|
SESSION_COOKIE_SECURE = True
|
|
CSRF_COOKIE_SECURE = True
|
|
X_FRAME_OPTIONS = 'DENY'
|
|
|
|
LOGGING = {
|
|
'version': 1,
|
|
'disable_existing_loggers': True,
|
|
'handlers': {
|
|
'file': {
|
|
'level': 'DEBUG',
|
|
'class': 'logging.FileHandler',
|
|
'filename': '/var/log/django.log',
|
|
},
|
|
'console': {
|
|
'class': 'logging.StreamHandler',
|
|
'formatter': 'simple'
|
|
},
|
|
},
|
|
'formatters': {
|
|
'verbose': {
|
|
'format': '{levelname} {name} {funcName} {message}',
|
|
'style': '{',
|
|
},
|
|
'simple': {
|
|
'format': '{levelname} {message}',
|
|
'style': '{',
|
|
},
|
|
},
|
|
'loggers': {
|
|
'procat2': {
|
|
'handlers': ['console', 'file'],
|
|
'level': 'DEBUG',
|
|
#'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'),
|
|
'propagate': True,
|
|
},
|
|
'products': {
|
|
'handlers': ['console', 'file'],
|
|
'level': 'DEBUG',
|
|
#'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'),
|
|
'propagate': True,
|
|
},
|
|
'catalogedit': {
|
|
'handlers': ['console', 'file'],
|
|
'level': 'DEBUG',
|
|
#'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'),
|
|
'propagate': True,
|
|
},
|
|
'lazysignup': {
|
|
'handlers': ['console', 'file'],
|
|
'level': 'DEBUG',
|
|
#'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'),
|
|
'propagate': True,
|
|
},
|
|
'markup': {
|
|
'handlers': ['console', 'file'],
|
|
'level': 'DEBUG',
|
|
#'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'),
|
|
'propagate': True,
|
|
},
|
|
'django': {
|
|
'handlers': ['console', 'file'],
|
|
#'level': 'DEBUG',
|
|
'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'),
|
|
'propagate': True,
|
|
},
|
|
'djangodav': {
|
|
'handlers': ['console', 'file'],
|
|
'level': 'DEBUG',
|
|
#'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'),
|
|
'propagate': True,
|
|
},
|
|
'django_http_auth': {
|
|
'handlers': ['console', 'file'],
|
|
'level': 'INFO',
|
|
#'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'),
|
|
'propagate': True,
|
|
},
|
|
'REMOVEMEFOREVERYTHING': {
|
|
'handlers': ['console'],
|
|
'level': 'DEBUG',
|
|
'propagate': True
|
|
},
|
|
# 'django.db.backends': {
|
|
# 'level': 'DEBUG',
|
|
# 'handlers': ['console', 'file'],
|
|
# 'propagate': True,
|
|
# }
|
|
},
|
|
}
|
|
|
|
# Application definition
|
|
INSTALLED_APPS = [
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'django.contrib.sites',
|
|
'django_extensions',
|
|
'django_celery_results',
|
|
'account',
|
|
'lazysignup',
|
|
'webpack_loader',
|
|
'djangodav',
|
|
'procat2',
|
|
'dashboard',
|
|
'products',
|
|
'quickinfo',
|
|
'markup',
|
|
]
|
|
|
|
MIDDLEWARE = [
|
|
'django.middleware.security.SecurityMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
'django.middleware.locale.LocaleMiddleware',
|
|
"account.middleware.LocaleMiddleware",
|
|
"account.middleware.TimezoneMiddleware",
|
|
'procat2.middleware.SetApplicationName',
|
|
]
|
|
|
|
ROOT_URLCONF = 'procat2.urls'
|
|
|
|
TEMPLATES = [
|
|
{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [TEMPLATES_DIR],
|
|
'APP_DIRS': True,
|
|
'OPTIONS': {
|
|
'context_processors': [
|
|
'django.template.context_processors.debug',
|
|
'django.template.context_processors.request',
|
|
'django.contrib.auth.context_processors.auth',
|
|
'django.contrib.messages.context_processors.messages',
|
|
'django_settings_export.settings_export',
|
|
"account.context_processors.account",
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
WSGI_APPLICATION = 'procat2.wsgi.application'
|
|
|
|
AUTHENTICATION_BACKENDS = (
|
|
'django.contrib.auth.backends.ModelBackend',
|
|
#"account.auth_backends.EmailAuthenticationBackend",
|
|
'lazysignup.backends.LazySignupBackend',
|
|
)
|
|
|
|
# Password validation
|
|
# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
|
|
|
|
AUTH_PASSWORD_VALIDATORS = [
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
|
|
},
|
|
]
|
|
|
|
DATABASE_ROUTERS = ('products.dbrouters.ProductDBRouter',)
|
|
|
|
# Internationalization
|
|
# https://docs.djangoproject.com/en/2.1/topics/i18n/
|
|
LANGUAGE_CODE = 'en-us'
|
|
TIME_ZONE = 'UTC'
|
|
USE_I18N = True
|
|
USE_L10N = True
|
|
USE_TZ = True
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# https://docs.djangoproject.com/en/2.2/howto/static-files/
|
|
STATIC_URL = '/static/'
|
|
# (STATIC_ROOT set in settings_ansible.py)
|
|
STATICFILES_DIRS = [
|
|
os.path.join(BASE_DIR, "static"),
|
|
os.path.join(FRONTEND_DIR, "dist"),
|
|
]
|
|
|
|
LOGIN_REDIRECT_URL = reverse_lazy('home')
|
|
LOGOUT_REDIRECT_URL = reverse_lazy('home')
|
|
|
|
# django-user-accounts
|
|
SITE_ID = 1
|
|
ACCOUNT_EMAIL_UNIQUE = True
|
|
ACCOUNT_EMAIL_CONFIRMATION_REQUIRED = True
|
|
DEFAULT_FROM_EMAIL = 'ProCatalog Support <support@procatalog.io>'
|
|
|
|
# django-debug-toolbar
|
|
DJDT = False
|
|
if DJDT:
|
|
MIDDLEWARE += (
|
|
'debug_toolbar.middleware.DebugToolbarMiddleware',
|
|
)
|
|
INSTALLED_APPS += (
|
|
'debug_toolbar',
|
|
)
|
|
INTERNAL_IPS = ('127.0.0.1',)
|
|
|
|
# what settings to expose in templates
|
|
SETTINGS_EXPORT = [
|
|
'CUSTOMER_NAME',
|
|
]
|
|
|
|
# can have multiple if we have multiple vue pages.
|
|
# https://github.com/owais/django-webpack-loader
|
|
WEBPACK_LOADER = {
|
|
'DEFAULT': {
|
|
'CACHE': not DEBUG,
|
|
#'BUNDLE_DIR_NAME': '/bundles/', # must end with slash
|
|
'BUNDLE_DIR_NAME': '',
|
|
# 'POLL_INTERVAL': 0.1,
|
|
# 'TIMEOUT': None,
|
|
'STATS_FILE': os.path.join(FRONTEND_DIR, 'webpack-stats.json'),
|
|
'IGNORE': [r'.+\.hot-update.js', r'.+\.map']
|
|
}
|
|
}
|
|
|
|
# allow large file uploads
|
|
# for example the markup tool receiving emails
|
|
DATA_UPLOAD_MAX_MEMORY_SIZE = FILE_UPLOAD_MAX_MEMORY_SIZE = 200 * 1024 * 1024 # 200MB
|
|
|
|
# celery settings
|
|
CELERY_BROKER_URL = 'amqp://guest:guest@localhost//'
|
|
CELERY_ACCEPT_CONTENT = ['json']
|
|
CELERY_RESULT_BACKEND = 'django-db'
|
|
CELERY_TASK_SERIALIZER = 'json'
|