loefsys.settings.base module

Module containing the base configuration.

class loefsys.settings.base.BaseSettings

Bases: BaseSettings

Base class for settings configuration.

The base class configures essential variables, such as the debug mode, which may be required by other modules.

BASE_DIR = PosixPath('/home/runner/work/loefsys/loefsys')
DEBUG
ALLOWED_HOSTS
ROOT_URLCONF = 'loefsys.urls'
WSGI_APPLICATION = 'loefsys.wsgi.application'
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
LOGIN_URL = 'login'
STATIC_URL = 'static/'
MEDIA_URL = '/media/'
MEDIA_ROOT = PosixPath('/home/runner/work/loefsys/loefsys/media')
SECRET_KEY
INTERNAL_IPS() Sequence[str]
Return type:

Sequence[str]

DJANGO_APPS() Sequence[str]
Return type:

Sequence[str]

THIRD_PARTY_APPS() Sequence[str]
Return type:

Sequence[str]

LOCAL_APPS() Sequence[str]
Return type:

Sequence[str]

INSTALLED_APPS() Sequence[str]
Return type:

Sequence[str]

MIDDLEWARE() Sequence[str]
Return type:

Sequence[str]