2017-08-11 18:32:02 +00:00
|
|
|
import os
|
2020-07-22 03:46:46 +00:00
|
|
|
from distutils.util import strtobool
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2019-04-14 03:09:55 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2017-12-01 03:54:50 +00:00
|
|
|
from dotenv import load_dotenv, find_dotenv
|
|
|
|
|
2017-08-11 18:32:02 +00:00
|
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
2017-08-19 14:16:51 +00:00
|
|
|
BASE_DIR = os.path.dirname(
|
|
|
|
os.path.dirname(
|
|
|
|
os.path.dirname(
|
|
|
|
os.path.abspath(__file__)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2017-12-01 03:54:50 +00:00
|
|
|
# Environment variables
|
|
|
|
# Check for and load environment variables from a .env file.
|
|
|
|
|
|
|
|
load_dotenv(find_dotenv())
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2017-11-29 20:02:14 +00:00
|
|
|
# Required settings
|
2017-10-23 13:49:09 +00:00
|
|
|
|
2017-11-29 20:02:14 +00:00
|
|
|
ALLOWED_HOSTS = os.environ.get('ALLOWED_HOSTS', '*').split(',')
|
2020-02-04 19:28:16 +00:00
|
|
|
SECRET_KEY = os.environ.get('SECRET_KEY') or None
|
|
|
|
DEBUG = os.environ.get('DEBUG') or False
|
2017-10-23 13:49:09 +00:00
|
|
|
|
|
|
|
|
2017-08-19 14:16:51 +00:00
|
|
|
# Applications
|
2020-01-19 16:49:45 +00:00
|
|
|
# https://docs.djangoproject.com/en/3.0/ref/applications/
|
2017-08-11 18:32:02 +00:00
|
|
|
|
|
|
|
INSTALLED_APPS = [
|
2017-08-13 14:48:16 +00:00
|
|
|
'api',
|
2017-10-22 18:00:42 +00:00
|
|
|
'babybuddy',
|
2017-08-13 14:48:16 +00:00
|
|
|
'core',
|
2017-08-18 13:02:31 +00:00
|
|
|
'dashboard',
|
2017-08-21 23:21:08 +00:00
|
|
|
'reports',
|
2017-08-13 14:48:16 +00:00
|
|
|
|
2021-06-22 03:41:23 +00:00
|
|
|
'axes',
|
2017-11-02 10:05:12 +00:00
|
|
|
'django_filters',
|
2017-08-13 14:48:16 +00:00
|
|
|
'rest_framework',
|
2017-12-05 15:46:59 +00:00
|
|
|
'rest_framework.authtoken',
|
2017-08-15 20:50:09 +00:00
|
|
|
'widget_tweaks',
|
2017-11-18 09:22:12 +00:00
|
|
|
'easy_thumbnails',
|
2018-02-25 06:13:39 +00:00
|
|
|
'storages',
|
2020-02-16 23:58:49 +00:00
|
|
|
'import_export',
|
2017-08-13 14:48:16 +00:00
|
|
|
|
2017-08-11 18:32:02 +00:00
|
|
|
'django.contrib.admin',
|
|
|
|
'django.contrib.auth',
|
|
|
|
'django.contrib.contenttypes',
|
|
|
|
'django.contrib.sessions',
|
|
|
|
'django.contrib.messages',
|
|
|
|
'django.contrib.staticfiles',
|
2020-02-07 05:15:36 +00:00
|
|
|
'django.contrib.humanize',
|
2017-08-11 18:32:02 +00:00
|
|
|
]
|
|
|
|
|
2017-08-19 14:16:51 +00:00
|
|
|
# Middleware
|
2020-01-19 16:49:45 +00:00
|
|
|
# https://docs.djangoproject.com/en/3.0/ref/middleware/
|
2017-08-19 14:16:51 +00:00
|
|
|
|
2017-08-11 18:32:02 +00:00
|
|
|
MIDDLEWARE = [
|
|
|
|
'django.middleware.security.SecurityMiddleware',
|
2017-10-23 09:07:35 +00:00
|
|
|
'whitenoise.middleware.WhiteNoiseMiddleware',
|
2017-08-11 18:32:02 +00:00
|
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
2020-05-17 06:57:00 +00:00
|
|
|
'babybuddy.middleware.RollingSessionMiddleware',
|
2019-04-14 02:13:14 +00:00
|
|
|
'django.middleware.locale.LocaleMiddleware',
|
2020-02-14 20:35:02 +00:00
|
|
|
'babybuddy.middleware.UserTimezoneMiddleware',
|
2017-08-11 18:32:02 +00:00
|
|
|
'django.middleware.common.CommonMiddleware',
|
|
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
2021-06-22 03:41:23 +00:00
|
|
|
'axes.middleware.AxesMiddleware',
|
2017-08-11 18:32:02 +00:00
|
|
|
]
|
|
|
|
|
2017-08-19 14:16:51 +00:00
|
|
|
|
|
|
|
# URL dispatcher
|
2020-01-19 16:49:45 +00:00
|
|
|
# https://docs.djangoproject.com/en/3.0/topics/http/urls/
|
2017-08-19 14:16:51 +00:00
|
|
|
|
2017-10-22 18:00:42 +00:00
|
|
|
ROOT_URLCONF = 'babybuddy.urls'
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2017-08-19 14:16:51 +00:00
|
|
|
|
|
|
|
# Templates
|
2020-01-19 16:49:45 +00:00
|
|
|
# https://docs.djangoproject.com/en/3.0/ref/settings/#std:setting-TEMPLATES
|
2017-08-19 14:16:51 +00:00
|
|
|
|
2017-08-11 18:32:02 +00:00
|
|
|
TEMPLATES = [
|
|
|
|
{
|
|
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
|
|
'DIRS': [],
|
|
|
|
'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',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2020-06-09 14:11:25 +00:00
|
|
|
# Database
|
|
|
|
# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
|
|
|
|
|
2021-08-06 21:28:45 +00:00
|
|
|
config = {
|
|
|
|
'ENGINE': os.getenv('DB_ENGINE') or 'django.db.backends.sqlite3',
|
|
|
|
'NAME': os.getenv('DB_NAME') or os.path.join(BASE_DIR, 'data/db.sqlite3')
|
|
|
|
}
|
2021-08-06 15:52:51 +00:00
|
|
|
if os.getenv('DB_USER'):
|
|
|
|
config['USER'] = os.getenv('DB_USER')
|
|
|
|
if os.environ.get('DB_PASSWORD') or os.environ.get('POSTGRES_PASSWORD'):
|
|
|
|
config['PASSWORD'] = os.environ.get('DB_PASSWORD') or os.environ.get('POSTGRES_PASSWORD')
|
|
|
|
if os.getenv('DB_HOST'):
|
|
|
|
config['HOST'] = os.getenv('DB_HOST')
|
|
|
|
if os.getenv('DB_PORT'):
|
|
|
|
config['PORT'] = os.getenv('DB_PORT')
|
|
|
|
|
|
|
|
DATABASES = {'default': config}
|
2020-06-09 14:11:25 +00:00
|
|
|
|
|
|
|
|
2020-01-29 04:45:37 +00:00
|
|
|
# Cache
|
|
|
|
# https://docs.djangoproject.com/en/3.0/topics/cache/
|
|
|
|
|
|
|
|
CACHES = {
|
|
|
|
'default': {
|
|
|
|
'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
|
|
|
|
'LOCATION': 'cache_default',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-08-19 14:16:51 +00:00
|
|
|
# WGSI
|
2020-01-19 16:49:45 +00:00
|
|
|
# https://docs.djangoproject.com/en/3.0/howto/deployment/wsgi/
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2017-10-22 18:00:42 +00:00
|
|
|
WSGI_APPLICATION = 'babybuddy.wsgi.application'
|
2017-08-11 18:32:02 +00:00
|
|
|
|
|
|
|
|
2017-08-16 16:46:26 +00:00
|
|
|
# Authentication
|
2020-01-19 16:49:45 +00:00
|
|
|
# https://docs.djangoproject.com/en/3.0/topics/auth/default/
|
2017-08-16 16:46:26 +00:00
|
|
|
|
2021-06-22 03:41:23 +00:00
|
|
|
AUTHENTICATION_BACKENDS = [
|
|
|
|
'axes.backends.AxesBackend',
|
|
|
|
'django.contrib.auth.backends.ModelBackend',
|
|
|
|
]
|
|
|
|
|
2017-08-16 16:46:26 +00:00
|
|
|
LOGIN_REDIRECT_URL = '/'
|
|
|
|
|
|
|
|
LOGIN_URL = '/login/'
|
|
|
|
|
|
|
|
LOGOUT_REDIRECT_URL = '/login/'
|
|
|
|
|
|
|
|
|
2020-01-20 23:09:58 +00:00
|
|
|
# Timezone
|
|
|
|
# https://docs.djangoproject.com/en/3.0/topics/i18n/timezones/
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2020-01-20 23:09:58 +00:00
|
|
|
USE_TZ = True
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2021-05-05 12:58:32 +00:00
|
|
|
TIME_ZONE = os.environ.get('TIME_ZONE') or 'UTC'
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2020-01-20 23:09:58 +00:00
|
|
|
# Internationalization
|
|
|
|
# https://docs.djangoproject.com/en/3.0/topics/i18n/
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2020-01-20 23:09:58 +00:00
|
|
|
USE_I18N = True
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2020-01-20 23:09:58 +00:00
|
|
|
LANGUAGE_CODE = 'en'
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2019-04-14 02:13:14 +00:00
|
|
|
LOCALE_PATHS = [
|
|
|
|
os.path.join(BASE_DIR, "locale"),
|
2019-04-14 03:09:55 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
LANGUAGES = [
|
|
|
|
('en', _('English')),
|
2021-02-25 14:00:23 +00:00
|
|
|
('nl', _('Dutch')),
|
2019-04-14 03:09:55 +00:00
|
|
|
('fr', _('French')),
|
2020-07-29 13:40:18 +00:00
|
|
|
('fi', _('Finnish')),
|
2019-06-07 14:17:15 +00:00
|
|
|
('de', _('German')),
|
2021-03-04 14:03:29 +00:00
|
|
|
('it', _('Italian')),
|
2021-09-17 01:53:46 +00:00
|
|
|
('pt', _('Portuguese')),
|
2020-01-17 03:14:22 +00:00
|
|
|
('es', _('Spanish')),
|
2019-05-02 18:48:36 +00:00
|
|
|
('sv', _('Swedish')),
|
2021-09-17 01:53:46 +00:00
|
|
|
('tr', _('Turkish'))
|
2019-04-14 02:13:14 +00:00
|
|
|
]
|
|
|
|
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2020-01-20 23:09:58 +00:00
|
|
|
# Format localization
|
|
|
|
# https://docs.djangoproject.com/en/3.0/topics/i18n/formatting/
|
|
|
|
|
|
|
|
USE_L10N = True
|
|
|
|
|
2020-07-22 03:46:46 +00:00
|
|
|
# Custom setting that can be used to override the locale-based time set by
|
|
|
|
# USE_L10N _for specific locales_ to use 24-hour format. In order for this to
|
|
|
|
# work with a given locale it must be set at the FORMAT_MODULE_PATH with
|
|
|
|
# conditionals on this setting. See babybuddy/forms/en/formats.py for an example
|
|
|
|
# implementation for the English locale.
|
|
|
|
|
2020-07-22 05:05:46 +00:00
|
|
|
USE_24_HOUR_TIME_FORMAT = strtobool(os.environ.get('USE_24_HOUR_TIME_FORMAT') or 'False')
|
2020-07-22 03:46:46 +00:00
|
|
|
|
2020-01-20 23:09:58 +00:00
|
|
|
FORMAT_MODULE_PATH = ['babybuddy.formats']
|
|
|
|
|
|
|
|
|
2017-08-11 18:32:02 +00:00
|
|
|
# Static files (CSS, JavaScript, Images)
|
2020-01-19 16:49:45 +00:00
|
|
|
# https://docs.djangoproject.com/en/3.0/howto/static-files/
|
|
|
|
# http://whitenoise.evans.io/en/stable/django.html
|
2017-08-11 18:32:02 +00:00
|
|
|
|
2017-10-23 09:07:35 +00:00
|
|
|
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
|
|
|
|
|
|
|
|
STATICFILES_FINDERS = [
|
|
|
|
'django.contrib.staticfiles.finders.FileSystemFinder',
|
|
|
|
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
|
|
|
|
]
|
|
|
|
|
2017-08-11 18:32:02 +00:00
|
|
|
STATIC_URL = '/static/'
|
2017-08-13 13:44:48 +00:00
|
|
|
|
2017-08-19 13:50:03 +00:00
|
|
|
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
|
|
|
|
|
2018-10-12 02:28:51 +00:00
|
|
|
WHITENOISE_ROOT = os.path.join(BASE_DIR, 'static', 'babybuddy', 'root')
|
2018-02-25 06:13:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Media files (User uploaded content)
|
2020-01-19 16:49:45 +00:00
|
|
|
# https://docs.djangoproject.com/en/3.0/topics/files/
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-18 09:22:12 +00:00
|
|
|
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
MEDIA_URL = '/media/'
|
|
|
|
|
2020-02-04 19:28:16 +00:00
|
|
|
AWS_STORAGE_BUCKET_NAME = os.environ.get('AWS_STORAGE_BUCKET_NAME') or None
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2020-02-04 19:28:16 +00:00
|
|
|
AWS_ACCESS_KEY_ID = os.environ.get('AWS_ACCESS_KEY_ID') or None
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2020-02-04 19:28:16 +00:00
|
|
|
AWS_SECRET_ACCESS_KEY = os.environ.get('AWS_SECRET_ACCESS_KEY') or None
|
2018-02-25 06:13:39 +00:00
|
|
|
|
|
|
|
if AWS_STORAGE_BUCKET_NAME:
|
|
|
|
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'
|
|
|
|
THUMBNAIL_DEFAULT_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'
|
2017-10-23 19:13:11 +00:00
|
|
|
|
2017-08-13 13:44:48 +00:00
|
|
|
|
2021-09-17 01:59:25 +00:00
|
|
|
# Security
|
|
|
|
|
2021-09-17 02:14:48 +00:00
|
|
|
# https://docs.djangoproject.com/en/3.2/ref/settings/#secure-proxy-ssl-header
|
2021-09-17 01:59:25 +00:00
|
|
|
if os.environ.get('SECURE_PROXY_SSL_HEADER'):
|
|
|
|
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
|
|
|
|
|
2021-09-17 02:14:48 +00:00
|
|
|
# https://docs.djangoproject.com/en/3.2/topics/http/sessions/#settings
|
2021-09-17 01:59:25 +00:00
|
|
|
SESSION_COOKIE_SECURE = True
|
2021-09-17 02:14:48 +00:00
|
|
|
|
|
|
|
# https://docs.djangoproject.com/en/3.2/ref/csrf/#settings
|
2021-09-17 01:59:25 +00:00
|
|
|
CSRF_COOKIE_SECURE = True
|
|
|
|
|
2021-09-17 02:14:48 +00:00
|
|
|
# https://docs.djangoproject.com/en/3.2/topics/auth/passwords/
|
|
|
|
AUTH_PASSWORD_VALIDATORS = [
|
|
|
|
{
|
|
|
|
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
|
|
|
|
'OPTIONS': {
|
|
|
|
'min_length': 8,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
|
|
|
|
},
|
|
|
|
]
|
2021-09-17 01:59:25 +00:00
|
|
|
|
2017-08-13 13:44:48 +00:00
|
|
|
# Django Rest Framework
|
2020-01-19 16:49:45 +00:00
|
|
|
# https://www.django-rest-framework.org/
|
2017-08-19 14:16:51 +00:00
|
|
|
|
2017-08-13 13:44:48 +00:00
|
|
|
REST_FRAMEWORK = {
|
2017-12-05 15:46:59 +00:00
|
|
|
'DEFAULT_AUTHENTICATION_CLASSES': [
|
|
|
|
'rest_framework.authentication.SessionAuthentication',
|
|
|
|
'rest_framework.authentication.TokenAuthentication',
|
|
|
|
],
|
2017-11-02 10:05:12 +00:00
|
|
|
'DEFAULT_FILTER_BACKENDS': [
|
|
|
|
'django_filters.rest_framework.DjangoFilterBackend',
|
|
|
|
],
|
2017-12-06 00:27:28 +00:00
|
|
|
'DEFAULT_METADATA_CLASS': 'api.metadata.APIMetadata',
|
|
|
|
'DEFAULT_PAGINATION_CLASS':
|
|
|
|
'rest_framework.pagination.LimitOffsetPagination',
|
2017-08-13 13:44:48 +00:00
|
|
|
'DEFAULT_PERMISSION_CLASSES': [
|
2017-10-22 18:00:42 +00:00
|
|
|
'api.permissions.BabyBuddyDjangoModelPermissions'
|
2017-08-20 17:31:19 +00:00
|
|
|
],
|
2017-11-02 10:05:12 +00:00
|
|
|
'DEFAULT_RENDERER_CLASSES': [
|
2017-08-20 17:31:19 +00:00
|
|
|
'rest_framework.renderers.JSONRenderer',
|
2017-11-02 10:05:12 +00:00
|
|
|
],
|
2017-10-21 21:36:44 +00:00
|
|
|
'PAGE_SIZE': 100
|
2017-08-13 13:44:48 +00:00
|
|
|
}
|
2017-11-04 11:59:28 +00:00
|
|
|
|
2020-02-16 23:58:49 +00:00
|
|
|
# Import/Export configuration
|
|
|
|
# See https://django-import-export.readthedocs.io/
|
|
|
|
|
|
|
|
IMPORT_EXPORT_IMPORT_PERMISSION_CODE = 'add'
|
2021-06-22 03:41:23 +00:00
|
|
|
|
2020-02-16 23:58:49 +00:00
|
|
|
IMPORT_EXPORT_EXPORT_PERMISSION_CODE = 'change'
|
2021-06-22 03:41:23 +00:00
|
|
|
|
2020-02-17 18:34:31 +00:00
|
|
|
IMPORT_EXPORT_USE_TRANSACTIONS = True
|
2020-02-16 23:58:49 +00:00
|
|
|
|
2021-06-22 03:41:23 +00:00
|
|
|
# Axes configuration
|
|
|
|
# See https://django-axes.readthedocs.io/en/latest/4_configuration.html
|
|
|
|
|
|
|
|
AXES_COOLOFF_TIME = 1
|
|
|
|
|
|
|
|
AXES_FAILURE_LIMIT = 5
|
|
|
|
|
2020-06-09 14:11:25 +00:00
|
|
|
# Session configuration
|
|
|
|
# Used by RollingSessionMiddleware to determine how often to reset the session.
|
|
|
|
# See https://docs.djangoproject.com/en/3.0/topics/http/sessions/
|
|
|
|
|
2020-05-17 06:57:00 +00:00
|
|
|
ROLLING_SESSION_REFRESH = 86400
|
|
|
|
|
2021-04-11 19:49:15 +00:00
|
|
|
# Set default auto field for models.
|
|
|
|
# See https://docs.djangoproject.com/en/3.2/releases/3.2/#customizing-type-of-auto-created-primary-keys
|
2021-06-22 03:41:23 +00:00
|
|
|
|
2021-04-11 19:49:15 +00:00
|
|
|
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
|
|
|
|
|
2017-11-04 11:59:28 +00:00
|
|
|
# Baby Buddy configuration
|
2017-11-29 20:02:14 +00:00
|
|
|
# See README.md#configuration for details about these settings.
|
2017-11-04 11:59:28 +00:00
|
|
|
|
|
|
|
BABY_BUDDY = {
|
2020-02-04 19:28:16 +00:00
|
|
|
'NAP_START_MIN': os.environ.get('NAP_START_MIN') or '06:00',
|
|
|
|
'NAP_START_MAX': os.environ.get('NAP_START_MAX') or '18:00',
|
|
|
|
'ALLOW_UPLOADS': os.environ.get('ALLOW_UPLOADS') or True
|
2017-11-04 11:59:28 +00:00
|
|
|
}
|