2 Django settings for hespul project.
4 Generated by 'django-admin startproject' using Django 1.11.
6 For more information on this file, see
7 https://docs.djangoproject.com/en/1.11/topics/settings/
9 For the full list of settings and their values, see
10 https://docs.djangoproject.com/en/1.11/ref/settings/
15 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
16 BASE_DIR
= os
.path
.dirname(os
.path
.dirname(os
.path
.abspath(__file__
)))
19 # Quick-start development settings - unsuitable for production
20 # See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/
22 # SECURITY WARNING: keep the secret key used in production secret!
23 SECRET_KEY
= '(*ab066z5#zdv0psbjiwj^0jk_*l61x8j*r^jij)efh0@xb9%('
25 # SECURITY WARNING: don't run with debug turned on in production!
28 ALLOWED_HOSTS
= ['testserver', 'localhost', '127.0.0.1']
31 # Application definition
34 'powerproduction.apps.PowerproductionConfig',
36 'django.contrib.admin',
37 'django.contrib.auth',
38 'django.contrib.contenttypes',
39 'django.contrib.sessions',
40 'django.contrib.messages',
41 'django.contrib.staticfiles',
45 'django.middleware.security.SecurityMiddleware',
46 'django.contrib.sessions.middleware.SessionMiddleware',
47 'django.middleware.common.CommonMiddleware',
48 'django.middleware.csrf.CsrfViewMiddleware',
49 'django.contrib.auth.middleware.AuthenticationMiddleware',
50 'django.contrib.messages.middleware.MessageMiddleware',
51 'django.middleware.clickjacking.XFrameOptionsMiddleware',
54 ROOT_URLCONF
= 'hespul.urls'
58 'BACKEND': 'django.template.backends.django.DjangoTemplates',
62 'context_processors': [
63 'django.template.context_processors.debug',
64 'django.template.context_processors.request',
65 'django.contrib.auth.context_processors.auth',
66 'django.contrib.messages.context_processors.messages',
72 WSGI_APPLICATION
= 'hespul.wsgi.application'
76 # https://docs.djangoproject.com/en/1.11/ref/settings/#databases
80 'ENGINE': 'django.db.backends.sqlite3',
81 'NAME': os
.path
.join(BASE_DIR
, 'db.sqlite3'),
87 # https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators
89 AUTH_PASSWORD_VALIDATORS
= [
91 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
94 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
97 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
100 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
105 # Internationalization
106 # https://docs.djangoproject.com/en/1.11/topics/i18n/
108 LANGUAGE_CODE
= 'en-us'
110 TIME_ZONE
= 'Europe/Paris'
119 # Static files (CSS, JavaScript, Images)
120 # https://docs.djangoproject.com/en/1.11/howto/static-files/
122 STATIC_URL
= '/static/'
129 'disable_existing_loggers': False,
132 'format': '{levelname:8s} {asctime} | {name}.{funcName} :: {message}',
133 'datefmt': '%Y-%m-%d %H:%M:%S',
137 'format': '%(levelname)8s :: %(message)s'
142 'class': 'logging.StreamHandler',
143 'formatter': 'verbose'
148 'handlers': ['console'],
152 'handlers': ['console'],