diff --git a/settings.py b/settings.py deleted file mode 100644 index 0c8b7cc2..00000000 --- a/settings.py +++ /dev/null @@ -1,269 +0,0 @@ -""" -Django settings for car_inventory project. - -Generated by 'django-admin startproject' using Django 5.0.6. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/topics/settings/ - -For the full list of settings and their values, see -https://docs.djangoproject.com/en/5.0/ref/settings/ -""" -from decimal import Decimal -from pathlib import Path -import os -from django.utils.translation import gettext_lazy as _ - -# 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/5.0/howto/deployment/checklist/ - -# SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = 'django-insecure-gc9bh4*3=b6hihdnaom0edjsbxh$5t)aap@e8p&340r7)*)qb8' - -# SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True - -ALLOWED_HOSTS = ['10.10.1.120', 'localhost', '127.0.0.1', '192.168.1.109', '172.20.10.4', '10.10.1.109'] - -# Application definition -INSTALLED_APPS = [ - 'django.contrib.sites', - 'django.contrib.admin', - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.messages', - 'django.contrib.staticfiles', - 'inventory.apps.InventoryConfig', - 'api.apps.ApiConfig', - 'allauth', - 'allauth.account', - 'allauth.socialaccount', - 'allauth.socialaccount.providers.google', - 'debug_toolbar', - 'silk', - 'django_prometheus', - 'django_tables2', - "django_bootstrap5", - "crispy_forms", - "crispy_bootstrap5", - "phonenumber_field", - "rest_framework", - 'rest_framework.authtoken', - 'django_extensions', - 'djangoviz', - 'django_ledger', - 'djmoney', - 'sslserver', - 'haikalbot', -] - -SITE_ID = 1 - -MIDDLEWARE = [ - 'django_prometheus.middleware.PrometheusBeforeMiddleware', - 'django.middleware.security.SecurityMiddleware', - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.locale.LocaleMiddleware', - 'django.middleware.common.CommonMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', - 'django.middleware.clickjacking.XFrameOptionsMiddleware', - 'allauth.account.middleware.AccountMiddleware', - 'debug_toolbar.middleware.DebugToolbarMiddleware', - 'silk.middleware.SilkyMiddleware', - 'django_prometheus.middleware.PrometheusAfterMiddleware', - -] -ROOT_URLCONF = 'car_inventory.urls' - -TEMPLATES = [ - { - "BACKEND": "django.template.backends.django.DjangoTemplates", - "DIRS": [os.path.join(BASE_DIR, 'templates')], - "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", - "dj_shop_cart.context_processors.cart", - ], - }, - }, -] - -WSGI_APPLICATION = 'car_inventory.wsgi.application' - - -# Database -# https://docs.djangoproject.com/en/5.0/ref/settings/#databases - -# DATABASES = { -# "default": { -# "ENGINE": "django_prometheus.db.backends.postgresql", -# "NAME": "murad_haikal", -# "USER": "f95166", -# "PASSWORD": "Kfsh&rc9788", -# "HOST": "localhost", -# "PORT": 5432, -# } -# } - - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': 'db.sqlite3', - } -} - -# Password validation -# https://docs.djangoproject.com/en/5.0/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', - }, -] - -# Authentications - - -ACCOUNT_AUTHENTICATION_METHOD = "email" -ACCOUNT_EMAIL_REQUIRED = True -ACCOUNT_UNIQUE_EMAIL = True -ACCOUNT_USERNAME_REQUIRED = False -LOGIN_REDIRECT_URL = '/' -LOGOUT_REDIRECT_URL = '/' -ACCOUNT_SIGNUP_REDIRECT_URL = '/' -ACCOUNT_USER_MODEL_USERNAME_FIELD = None -ACCOUNT_EMAIL_VERIFICATION = "mandatory" - -AUTHENTICATION_BACKENDS = [ - "django.contrib.auth.backends.ModelBackend", - "allauth.account.auth_backends.AuthenticationBackend", -] - -REST_FRAMEWORK = { - 'DEFAULT_AUTHENTICATION_CLASSES': [ - 'rest_framework.authentication.TokenAuthentication', - ], - 'DEFAULT_PERMISSION_CLASSES': [ - 'rest_framework.permissions.AllowAny', - ], -} - - -# Email backend -EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend" - -STATIC_URL = '/static/' -MEDIA_URL = '/images/' -STATICFILES_DIRS = [ - BASE_DIR / 'static' -] -STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') -MEDIA_ROOT = os.path.join(BASE_DIR, 'static/images') - -# Default primary key field type -# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field - -DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' - -# Internationalization -# https://docs.djangoproject.com/en/5.0/topics/i18n/ - - -LOCALE_PATHS = ( - os.path.join(BASE_DIR, 'locale'), -) - -LANGUAGE_COOKIE_NAME = 'django_language' - -LANGUAGE_CODE = "en" - -USE_I18N = True - -USE_L10N = True - -USE_TZ = True - -LANGUAGES = [ - ('en', _('English')), - ('ar', _('Arabic')), -] - -TIME_ZONE = "Asia/Riyadh" - -# Static files (CSS, JavaScript, Images) -# https://docs.djangoproject.com/en/5.0/howto/static-files/ - -SILKY_PYTHON_PROFILER = True - -DJANGO_TABLES2_TEMPLATE = "django_tables2/bootstrap5-responsive.html" -DJANGO_TABLES2_TABLE_ATTRS = { - 'class': 'table table-sm table-hover table-responsive-sm', - 'thead': { - 'class': 'table-secondary', - }, - 'tbody': { - 'class': 'fw-light', - } -} - -CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5" -CRISPY_TEMPLATE_PACK = "bootstrap5" - -# API KEYS -# OPENAI -OPENAI_API_KEY = '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' - -# option-info -# 367974ed -# 046b0412c1b4d3f8c39ec6375d6f3030 - -# vehicle-info -# ELM API KEYS -ELM_APP_ID = 'c2729afb' -ELM_APP_KEY = '6d397471920412d672af1b8a02ca52ea' -ELM_CLIENT_ID = '94142c27-2536-47e9-8e28-9ca7728b9442' - -LOGGING = { - 'version': 1, - 'disable_existing_loggers': False, - 'handlers': { - 'console': { - 'class': 'logging.StreamHandler', - }, - }, - 'loggers': { - 'django': { - 'handlers': ['console'], - 'level': 'INFO', - }, - 'openai': { - 'handlers': ['console'], - 'level': 'WARNING', - }, - }, -} - -# Global Settings -DEFAULT_CURRENCY = 'SAR' -CURRENCY = _('SAR') -VAT_RATE = Decimal('0.15') \ No newline at end of file