123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- """
- Django settings for system 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/
- """
- from pathlib import Path
- #import ldap
- #from django_auth_ldap.config import LDAPSearch
- # 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 = 'django-insecure-*=si4xyn-x2m9$#f=bxy84e6u7ec2fz=@7yx5t6o=-5+)qbin*'
- # SECURITY WARNING: don't run with debug turned on in production!
- DEBUG = True
- ALLOWED_HOSTS = ['*']
- # Application definition
- INSTALLED_APPS = [
- 'django.contrib.admin',
- 'django.contrib.auth',
- 'django.contrib.contenttypes',
- 'django.contrib.sessions',
- 'django.contrib.messages',
- 'django.contrib.staticfiles',
- 'trumbowyg',
- 'import_export',
- 'crispy_forms',
- 'core',
- 'gest_clin',
- 'parc_info',
- 'gest_user',
- 'gest_taches',
- ]
- IMPORT_EXPORT_USE_TRANSACTIONS = True
- CRISPY_TEMPLATE_PACK = 'bootstrap4'
- 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',
- ]
- # AUTH_LDAP_SERVER_URI = "ldap://172.16.106.102"
- # AUTH_LDAP_BIND_DN = "seafile.adm@intra.stjacques"
- # AUTH_LDAP_BIND_PASSWORD = "DxbYwD5V2t"
- # AUTH_LDAP_USER_SEARCH = LDAPSearch("OU=Informatique,OU=Administratif,Ou=Gentilly,OU=Utilisateurs,DC=intra,DC=stjacques", ldap.SCOPE_SUBTREE, "(sAMAccountName=%(user)s)")
- # AUTH_LDAP_USER_ATTR_MAP = {
- # "first_name": "givenName",
- # "last_name": "sn",
- # "email": "mail",
- # "username": "sAMAccountName",
- # }
- # AUTH_LDAP_ALWAYS_UPDATE_USER = True
- AUTHENTICATION_BACKENDS = [
- # "django_auth_ldap.backend.LDAPBackend",
- "django.contrib.auth.backends.ModelBackend",
- ]
- ROOT_URLCONF = 'system.urls'
- 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',
- ],
- },
- },
- ]
- WSGI_APPLICATION = 'system.wsgi.application'
- # Database
- # https://docs.djangoproject.com/en/3.2/ref/settings/#databases
- DATABASES = {
- # 'default': {
- # 'ENGINE': 'django.db.backends.sqlite3',
- # 'NAME': BASE_DIR / 'db.sqlite3',
- # }
- 'default': {
- 'ENGINE': 'django.db.backends.mysql',
- 'NAME': 'gestclin', # db name
- 'USER': 'root',
- 'PASSWORD': '7AX8ifyKodVj9hSw',
- 'HOST': 'mariadb',
- 'PORT': '3306',
- 'OPTIONS': {'charset': 'utf8mb4',},
- }
- }
- # EMAIL
- # EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
- # EMAIL_HOST = 'smtp.elsan.care'
- # EMAIL_PORT = '25'
- # EMAIL_USE_TLS = False
- # EMAIL_HOST_USER = 'smtp.gen@elsan.care'
- # EMAIL_HOST_PASSWORD = 'c!fgx1cPlsd%JxW4$SKf!'
- # 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 = 'fr-fr'
- TIME_ZONE = 'UTC'
- USE_I18N = True
- USE_L10N = True
- USE_TZ = True
- # Static files (CSS, JavaScript, Images)
- # https://docs.djangoproject.com/en/3.2/howto/static-files/
- STATIC_URL = '/static/'
- STATICFILES_DIRS = [
- BASE_DIR / "static",
- ]
- # Default primary key field type
- # https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
- DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
- LOGGING = {
- "version": 1,
- "disable_existing_loggers": False,
- "handlers": {"console": {"class": "logging.StreamHandler"}},
- "loggers": {"django_auth_ldap": {"level": "DEBUG", "handlers": ["console"]}},
- }
|