# -*- encoding: utf-8 -*- import os, environ from pathlib import Path from django.utils import timezone # BASE_DIR is the root of the project, all paths should be constructed from it using pathlib BASE_DIR = Path(__file__).parent.parent # Create an environment and read variables from .env file env = environ.Env(DEBUG=(bool, True)) environ.Env.read_env(BASE_DIR / ".env") # SECURITY WARNING: This is sensitive data, keep secure! SECRET_KEY = env('SECRET_KEY', default="unsecure-default-secret-key") # SECURITY WARNING: Must be 'False' in production! DEBUG = env('DEBUG') # Hosts and Origins that the server host must be within. ALLOWED_HOSTS = ["localhost", "127.0.0.1", env("HOST", default="127.0.0.1")] CSRF_TRUSTED_ORIGINS = ["http://localhost", "http://127.0.0.1", "https://" + env("HOST", default="127.0.0.1")] # Application definition INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'rest_framework', "rest_framework.authtoken", "django_filters", 'apps.api', 'apps.home', 'apps.authentication' ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'whitenoise.middleware.WhiteNoiseMiddleware', '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 = 'core.urls' APPEND_SLASH = True LOGIN_URL = "/login/" LOGIN_REDIRECT_URL = "/" LOGOUT_REDIRECT_URL = "/" AUTH_USER_MODEL = "authentication.User" TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [BASE_DIR / "apps/templates"], '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', ], }, }, ] WSGI_APPLICATION = 'core.wsgi.application' # Database # https://docs.djangoproject.com/en/5.0/ref/settings/#databases if os.environ.get('DB_ENGINE') and os.environ.get('DB_ENGINE') == "mysql": DATABASES = { 'default': { 'ENGINE' : 'django.db.backends.mysql', 'NAME' : os.getenv('DB_NAME' , 'appseed_db'), 'USER' : os.getenv('DB_USERNAME' , 'appseed_db_usr'), 'PASSWORD': os.getenv('DB_PASS' , 'pass'), 'HOST' : os.getenv('DB_HOST' , 'localhost'), 'PORT' : os.getenv('DB_PORT' , 3306), }, } else: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': 'db.sqlite3', } } # Password validation # https://docs.djangoproject.com/en/5.0/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', }, ] # Logging # https://docs.djangoproject.com/en/5.0/topics/logging/ LOGGING_DIR = BASE_DIR / "logs" LOGGING_DIR.mkdir(exist_ok=True) LOGGING = { 'version': 1, 'disable_existing_loggers': False, 'handlers': { 'file': { 'level': 'DEBUG', 'class': 'logging.FileHandler', 'filename': LOGGING_DIR / f'{timezone.now()}.log', "formatter": "verbose", }, 'console': { 'level': 'DEBUG', 'class': 'logging.StreamHandler', "formatter": "verbose" }, "timed_file": { "level": "DEBUG", "class": "logging.handlers.TimedRotatingFileHandler", "when": "D", "interval": 1, "backupCount": 3, "encoding": "UTF-8", "filename": LOGGING_DIR / "debug.log", "formatter": "verbose" } }, 'loggers': { "apps": { "handlers": ["timed_file", "console"], "level": "DEBUG", "propagate": True }, "django": { "handlers": ["timed_file", "console"], "level": "INFO", "propagate": True }, "django.request": { "handlers": ["timed_file", "console"], "level": "ERROR", "propagate": True } }, "formatters": { "verbose": { "format": "[%(asctime)s] [%(levelname)s] [%(name)s]: %(message)s", "datefmt": "%Y-%m-%d %H:%M:%S", } } } # Internationalization # https://docs.djangoproject.com/en/5.0/topics/i18n/ LANGUAGE_CODE = 'en-gb' TIME_ZONE = 'Europe/London' USE_I18N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/5.0/howto/static-files/ STATIC_ROOT = BASE_DIR / 'staticfiles' STATIC_URL = '/static/' # Extra places for collectstatic to find static files. STATICFILES_DIRS = ( BASE_DIR / 'apps/static', ) # Media Files MEDIA_ROOT = BASE_DIR / 'media' MEDIA_URL = '/media/' # Django Rest Framework # https://www.django-rest-framework.org/ REST_FRAMEWORK = { 'DEFAULT_THROTTLE_CLASSES': [ 'rest_framework.throttling.AnonRateThrottle', 'rest_framework.throttling.UserRateThrottle' ], 'DEFAULT_THROTTLE_RATES': { 'anon': '100/day', 'user': '1000/day' } }