2021-07-01 09:16:48 +02:00
|
|
|
"""
|
|
|
|
Django settings for gotrucki project.
|
|
|
|
|
|
|
|
Generated by 'django-admin startproject' using Django 3.2.4.
|
|
|
|
|
|
|
|
For more information on this file, see
|
|
|
|
https://docs.djangoproject.com/en/3.2/topics/settings/
|
|
|
|
|
|
|
|
For the full list of settings and their values, see
|
|
|
|
https://docs.djangoproject.com/en/3.2/ref/settings/
|
|
|
|
"""
|
|
|
|
import os
|
|
|
|
from pathlib import Path
|
2021-07-01 09:22:59 +02:00
|
|
|
from django.db.backends.signals import connection_created
|
2021-07-01 09:16:48 +02:00
|
|
|
|
|
|
|
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
|
|
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
|
|
|
|
|
|
|
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
|
|
# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/
|
|
|
|
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
|
|
SECRET_KEY = os.environ.get("SECRET_KEY")
|
|
|
|
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
|
|
DEBUG = os.environ.get("DEBUG", "True") == "True"
|
|
|
|
|
|
|
|
ALLOWED_HOSTS = []
|
|
|
|
|
|
|
|
# ALLOWED_HOSTS = os.environ.get("ALLOWED_HOSTS").split(",")
|
|
|
|
if not os.environ.get("ALLOWED_HOSTS") == None:
|
|
|
|
ALLOWED_HOSTS = os.environ.get("ALLOWED_HOSTS").split(",")
|
|
|
|
|
|
|
|
# Application definition
|
|
|
|
|
|
|
|
INSTALLED_APPS = [
|
|
|
|
'django.contrib.admin',
|
|
|
|
'django.contrib.auth',
|
|
|
|
'django.contrib.contenttypes',
|
|
|
|
'django.contrib.sessions',
|
|
|
|
'django.contrib.messages',
|
|
|
|
'django.contrib.staticfiles',
|
2021-07-01 09:25:13 +02:00
|
|
|
'rest_framework',
|
2021-07-01 09:16:48 +02:00
|
|
|
'app.account',
|
|
|
|
'app.auction',
|
|
|
|
'app.notification',
|
|
|
|
]
|
|
|
|
|
|
|
|
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',
|
|
|
|
]
|
|
|
|
|
|
|
|
ROOT_URLCONF = 'gotrucki.urls'
|
|
|
|
|
|
|
|
TEMPLATES = [
|
|
|
|
{
|
|
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
|
|
'DIRS': [os.path.join(BASE_DIR, "app", "templates")],
|
|
|
|
'APP_DIRS': False,
|
|
|
|
'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',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
WSGI_APPLICATION = 'gotrucki.wsgi.application'
|
|
|
|
|
|
|
|
|
|
|
|
# Database
|
|
|
|
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases
|
|
|
|
|
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
|
|
"NAME": os.path.join(BASE_DIR, os.environ.get("DB")),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def init_command_sqlite(sender, connection, **kwargs):
|
|
|
|
"""Enable initial config sqlite."""
|
|
|
|
if connection.vendor == "sqlite":
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.execute("PRAGMA locking_mode=exclusive;")
|
|
|
|
cursor.execute("PRAGMA journal_mode=wal;")
|
|
|
|
cursor.execute("PRAGMA synchronous=full;")
|
|
|
|
|
|
|
|
connection_created.connect(init_command_sqlite)
|
|
|
|
|
|
|
|
# Password validation
|
|
|
|
# https://docs.djangoproject.com/en/3.2/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',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
# Internationalization
|
|
|
|
# https://docs.djangoproject.com/en/3.2/topics/i18n/
|
|
|
|
|
|
|
|
LANGUAGE_CODE = 'es-es'
|
|
|
|
|
|
|
|
TIME_ZONE = 'UTC'
|
|
|
|
|
|
|
|
USE_I18N = True
|
|
|
|
|
|
|
|
USE_L10N = False
|
|
|
|
|
|
|
|
USE_TZ = True
|
|
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
|
|
# https://docs.djangoproject.com/en/3.2/howto/static-files/
|
|
|
|
STATIC_ROOT = os.environ.get("STATIC_ROOT")
|
|
|
|
STATIC_URL = os.environ.get("STATIC_URL")
|
|
|
|
MEDIA_ROOT = os.path.join(BASE_DIR, "media")
|
|
|
|
MEDIA_URL = os.environ.get("MEDIA_URL")
|
|
|
|
|
|
|
|
DOMAIN = os.environ.get("DOMAIN")
|
|
|
|
DOMAIN_URL = os.environ.get("DOMAIN_URL")
|
|
|
|
|
|
|
|
|
|
|
|
# Email configuration
|
|
|
|
EMAIL_USE_TLS = os.environ.get("EMAIL_USE_TLS") == "True"
|
|
|
|
EMAIL_HOST = os.environ.get("EMAIL_HOST")
|
|
|
|
EMAIL_PORT = os.environ.get("EMAIL_PORT")
|
|
|
|
EMAIL_HOST_USER = os.environ.get("EMAIL_USER")
|
|
|
|
EMAIL_HOST_PASSWORD = os.environ.get("EMAIL_PASSWORD")
|
|
|
|
DOMAIN_HOST = os.environ.get("DOMAIN_HOST")
|
|
|
|
DEFAULT_FROM_EMAIL = os.environ.get("DEFAULT_FROM_EMAIL")
|
|
|
|
|
|
|
|
# Realtime
|
|
|
|
ASGI_APPLICATION = "asgi.application"
|
|
|
|
CHANNEL_LAYERS = {
|
|
|
|
"default": {
|
|
|
|
"BACKEND": "channels_redis.core.RedisChannelLayer",
|
|
|
|
"CONFIG": {
|
|
|
|
"hosts": [(os.environ.get("REDIS_HOST"), os.environ.get("REDIS_PORT"))],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Default primary key field type
|
|
|
|
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
|
|
|
|
|
|
|
|
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|
|
|
|
|
|
|
|
if DEBUG:
|
|
|
|
CACHES = {
|
|
|
|
"default": {
|
|
|
|
"BACKEND": "django.core.cache.backends.dummy.DummyCache",
|
|
|
|
}
|
|
|
|
}
|