2020-11-22 22:08:09 +01:00
|
|
|
"""
|
|
|
|
Django settings for timefall project.
|
|
|
|
|
|
|
|
Generated by 'django-admin startproject' using Django 3.1.3.
|
|
|
|
|
|
|
|
For more information on this file, see
|
|
|
|
https://docs.djangoproject.com/en/3.1/topics/settings/
|
|
|
|
|
|
|
|
For the full list of settings and their values, see
|
|
|
|
https://docs.djangoproject.com/en/3.1/ref/settings/
|
|
|
|
"""
|
|
|
|
|
|
|
|
from pathlib import Path
|
2020-12-20 23:10:49 +01:00
|
|
|
import os
|
2021-01-10 21:10:39 +01:00
|
|
|
from django.urls import reverse_lazy
|
2020-11-22 22:08:09 +01:00
|
|
|
|
|
|
|
# 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.1/howto/deployment/checklist/
|
|
|
|
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
|
|
SECRET_KEY = 'tx#+u3u-r1$n_4r(!6vvcb@1f5!z21^74w(zesiz$&59&72$kq'
|
|
|
|
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
|
|
DEBUG = True
|
|
|
|
|
2020-12-20 23:10:49 +01:00
|
|
|
ALLOWED_HOSTS = ['192.168.101.128',
|
2021-01-05 00:33:09 +01:00
|
|
|
'192.168.101.129',
|
2020-12-20 23:10:49 +01:00
|
|
|
'127.0.0.1',]
|
2020-11-22 22:08:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Application definition
|
|
|
|
|
|
|
|
INSTALLED_APPS = [
|
2021-01-08 22:05:06 +01:00
|
|
|
'django_extensions',
|
2020-12-20 23:10:49 +01:00
|
|
|
'hr_module.apps.HrModuleConfig',
|
2021-01-05 00:33:09 +01:00
|
|
|
'employee_module.apps.EmployeeModuleConfig',
|
2020-11-22 22:08:09 +01:00
|
|
|
'django.contrib.admin',
|
|
|
|
'django.contrib.auth',
|
|
|
|
'django.contrib.contenttypes',
|
|
|
|
'django.contrib.sessions',
|
|
|
|
'django.contrib.messages',
|
|
|
|
'django.contrib.staticfiles',
|
|
|
|
]
|
|
|
|
|
|
|
|
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',
|
|
|
|
]
|
|
|
|
|
|
|
|
ROOT_URLCONF = 'timefall.urls'
|
|
|
|
|
|
|
|
TEMPLATES = [
|
|
|
|
{
|
|
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
2020-12-20 23:10:49 +01:00
|
|
|
'DIRS': [BASE_DIR / 'templates',
|
|
|
|
BASE_DIR / 'hr_module/templates']
|
2020-11-22 22:08:09 +01:00
|
|
|
,
|
|
|
|
'APP_DIRS': True,
|
|
|
|
'OPTIONS': {
|
|
|
|
'context_processors': [
|
2021-01-10 21:10:39 +01:00
|
|
|
'hr_module.context_processors.manager_flag',
|
2021-01-08 22:05:06 +01:00
|
|
|
'django.template.context_processors.media',
|
2020-11-22 22:08:09 +01:00
|
|
|
'django.template.context_processors.debug',
|
|
|
|
'django.template.context_processors.request',
|
|
|
|
'django.contrib.auth.context_processors.auth',
|
|
|
|
'django.contrib.messages.context_processors.messages',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
WSGI_APPLICATION = 'timefall.wsgi.application'
|
|
|
|
|
|
|
|
|
|
|
|
# Database
|
|
|
|
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases
|
|
|
|
|
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
|
|
'NAME': BASE_DIR / 'db.sqlite3',
|
2020-12-20 23:10:49 +01:00
|
|
|
'STRING': 'sqlite:///' + str(BASE_DIR / 'db.sqlite3')
|
2020-11-22 22:08:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Password validation
|
|
|
|
# https://docs.djangoproject.com/en/3.1/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.1/topics/i18n/
|
|
|
|
|
|
|
|
LANGUAGE_CODE = 'en-us'
|
|
|
|
|
|
|
|
TIME_ZONE = 'UTC'
|
|
|
|
|
|
|
|
USE_I18N = True
|
|
|
|
|
|
|
|
USE_L10N = True
|
|
|
|
|
|
|
|
USE_TZ = True
|
|
|
|
|
|
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
|
|
# https://docs.djangoproject.com/en/3.1/howto/static-files/
|
|
|
|
|
|
|
|
STATIC_URL = '/static/'
|
2020-12-20 23:10:49 +01:00
|
|
|
|
|
|
|
STATICFILES_DIRS = [
|
|
|
|
os.path.join(BASE_DIR, 'static'),
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2021-01-08 22:05:06 +01:00
|
|
|
|
2021-01-05 00:33:09 +01:00
|
|
|
|
2021-01-10 21:10:39 +01:00
|
|
|
LOGOUT_REDIRECT_URL = reverse_lazy('login')
|
|
|
|
LOGIN_REDIRECT_URL = reverse_lazy('hr_module:homepage')
|
2021-01-05 23:18:41 +01:00
|
|
|
|
2021-01-08 22:05:06 +01:00
|
|
|
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
|
|
|
|
MEDIA_URL = '/media/'
|
|
|
|
|
2021-01-16 23:56:16 +01:00
|
|
|
TMP_FILE_STORAGE = os.path.join(MEDIA_ROOT, 'tmp/')
|
2021-01-10 21:10:39 +01:00
|
|
|
IMPORT_REPORT_STORAGE = os.path.join(MEDIA_ROOT, 'import_reports/')
|