iommi_demo.core.settings

Django settings for example project.

For more information on this file, see https://docs.djangoproject.com/en/1.7/topics/settings/

For the full list of settings and their values, see https://docs.djangoproject.com/en/1.7/ref/settings/

Attributes

Module Contents

iommi_demo.core.settings.config: decouple.AutoConfig
iommi_demo.core.settings.PROJECT_DIR: pathlib.Path
iommi_demo.core.settings.BASE_DIR: pathlib.Path
iommi_demo.core.settings.SECRET_KEY: str
iommi_demo.core.settings.SECRET_KEY = ''
iommi_demo.core.settings.DEBUG: bool
iommi_demo.core.settings.TEMPLATE_DEBUG
iommi_demo.core.settings.TEMPLATES: list[dict[str, Any]]
iommi_demo.core.settings.ALLOWED_HOSTS: list[str] = ['localhost', '127.0.0.1']
iommi_demo.core.settings.INSTALLED_APPS: list[str] = ['django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions',...
iommi_demo.core.settings.MIDDLEWARE: list[str] = ['corsheaders.middleware.CorsMiddleware', 'iommi.live_edit.Middleware',...
iommi_demo.core.settings.ROOT_URLCONF: str = 'core.urls'
iommi_demo.core.settings.WSGI_APPLICATION: str = 'core.wsgi.application'
iommi_demo.core.settings.DEFAULT_AUTO_FIELD: str = 'django.db.models.AutoField'
iommi_demo.core.settings.DATABASE_PATH: pathlib.Path
iommi_demo.core.settings.DATABASES: dict[str, dict[str, str]]
iommi_demo.core.settings.LOCALE_PATHS: list[pathlib.Path]
iommi_demo.core.settings.TIME_ZONE: str = 'UTC'
iommi_demo.core.settings.USE_I18N: bool = True
iommi_demo.core.settings.USE_TZ: bool = True
iommi_demo.core.settings.SITE_ID: int = 1
iommi_demo.core.settings.LOGGING: dict[str, Any]
iommi_demo.core.settings.MEDIA_ROOT: pathlib.Path
iommi_demo.core.settings.MEDIA_URL: str = '/media/'
iommi_demo.core.settings.STATIC_ROOT: pathlib.Path
iommi_demo.core.settings.STATIC_URL: str = '/static/'
iommi_demo.core.settings.STATICFILES_FINDERS: list[str] = ['django.contrib.staticfiles.finders.FileSystemFinder',...
iommi_demo.core.settings.IOMMI_DEBUG: bool
iommi_demo.core.settings.IOMMI_DEFAULT_STYLE: iommi.style.Style
iommi_demo.core.settings.IOMMI_MAIN_MENU: str = 'app.main_menu.main_menu'
iommi_demo.core.settings.AUTHENTICATION_BACKENDS: list[str] = ['rules.permissions.ObjectPermissionBackend',...
iommi_demo.core.settings.SOCIALACCOUNT_ONLY: bool = True
iommi_demo.core.settings.SOCIALACCOUNT_ADAPTER: str = 'app.adapter.UsernameAdapter'
iommi_demo.core.settings.SOCIALACCOUNT_PROVIDERS: dict[str, Any]
iommi_demo.core.settings.SOCIALACCOUNT_FORMS
iommi_demo.core.settings.ACCOUNT_LOGIN_METHODS: set[str]
iommi_demo.core.settings.ACCOUNT_SIGNUP_FIELDS: list[str] = ['email*', 'password1*', 'password2*']
iommi_demo.core.settings.ACCOUNT_EMAIL_VERIFICATION: str = 'none'
iommi_demo.core.settings.ACCOUNT_UNIQUE_EMAIL: bool = True
iommi_demo.core.settings.ACCOUNT_USER_MODEL_USERNAME_FIELD = None
iommi_demo.core.settings.ACCOUNT_LOGOUT_ON_GET: bool = True
iommi_demo.core.settings.LOGIN_REDIRECT_URL: str = '/'
iommi_demo.core.settings.CORS_ALLOW_CREDENTIALS: bool = True
iommi_demo.core.settings.CORS_ALLOW_PRIVATE_NETWORK: bool = True
iommi_demo.core.settings.CORS_ALLOW_HEADERS: list[str] = ['*']
iommi_demo.core.settings.CORS_ALLOWED_ORIGINS: list[str] = ['https://localhost', 'http://localhost', 'https://localhost:8000', 'http://localhost:8000']
iommi_demo.core.settings.SECURE_REFERRER_POLICY: str = 'no-referrer-when-downgrade'