| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- """
- Django settings for network_report project.
- Generated by 'django-admin startproject' using Django 4.1.5.
- For more information on this file, see
- https://docs.djangoproject.com/en/4.1/topics/settings/
- For the full list of settings and their values, see
- https://docs.djangoproject.com/en/4.1/ref/settings/
- """
- from pathlib import Path
- import os
- import os
- import environ
- from pprint import pprint
- import django
- from django.utils.encoding import smart_str
- django.utils.encoding.smart_text = smart_str
- env = environ.Env()
- environ.Env.read_env()
- # Build paths inside the project like this: BASE_DIR / 'subdir'.
- BASE_DIR = Path(__file__).resolve().parent.parent
- from celery.schedules import crontab
- # Quick-start development settings - unsuitable for production
- # See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
- # SECURITY WARNING: keep the secret key used in production secret!
- SECRET_KEY = 'django-insecure-e197skh+hf2!q)k&z9a*=#_mnr4y(+x@i856z76oxpz!19%3u='
- # SECURITY WARNING: don't run with debug turned on in production!
- DEBUG = True
- mode = os.getenv('MODE')
- pprint(f"==== {mode} ====")
- if mode == "dev" or mode == "":
- DEBUG = True
- else:
- DEBUG = False
- ALLOWED_HOSTS = ['*']
- # Application definition
- INSTALLED_APPS = [
- 'django.contrib.admin',
- 'django.contrib.auth',
- 'django.contrib.contenttypes',
- 'django.contrib.sessions',
- 'django.contrib.messages',
- 'django.contrib.staticfiles',
- 'django.contrib.humanize',
- 'django.contrib.postgres',
- 'crispy_forms',
- "crispy_bootstrap5",
- "django_browser_reload",
- 'widget_tweaks',
- 'django_bootstrap_breadcrumbs',
- 'django_filters',
- 'django_yarnpkg',
- 'backend.apps.BackendConfig',
- ]
- 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',
- "django_browser_reload.middleware.BrowserReloadMiddleware",
- ]
- ROOT_URLCONF = 'network_report.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',
- 'backend.context_processors.network_report',
- ],
- },
- },
- ]
- WSGI_APPLICATION = 'network_report.wsgi.application'
- # Database
- # https://docs.djangoproject.com/en/4.1/ref/settings/#databases
- DATABASES = {
- 'default': {
- 'ENGINE': 'django.db.backends.postgresql_psycopg2',
- 'NAME': env("POSTGRES_NAME"),
- 'USER': env("POSTGRES_USER"),
- 'PASSWORD': env("POSTGRES_PASSWORD"),
- 'HOST': 'db',
- 'PORT': '5432',
- }
- }
- # Password validation
- # https://docs.djangoproject.com/en/4.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/4.1/topics/i18n/
- LANGUAGE_CODE = 'en-us'
- TIME_ZONE = 'UTC'
- USE_I18N = True
- USE_TZ = True
- # Static files (CSS, JavaScript, Images)
- # https://docs.djangoproject.com/en/4.1/howto/static-files/
- STATIC_URL = 'static/'
- # Default primary key field type
- # https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
- DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
- MEDIA_URL = '/media/'
- MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
- CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5"
- CRISPY_TEMPLATE_PACK = "bootstrap5"
- STATICFILES_DIRS = [
- BASE_DIR / "static",
- ]
- STATIC_ROOT = BASE_DIR / 'staticfiles'
- STATICFILES_FINDERS = [
- 'django.contrib.staticfiles.finders.FileSystemFinder',
- 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
- 'django_yarnpkg.finders.NodeModulesFinder',
- 'compressor.finders.CompressorFinder'
- ]
- YARN_INSTALLED_APPS = (
- 'bootstrap@^5.0',
- 'underscore@^1.6.1',
- 'alpinejs@^3.10.5',
- 'axios@^1.2.2',
- 'tailwindcss@^3.2.4',
- 'sortablejs@^1.1.5',
- 'chart.js@^4.1.1',
- 'datatables.net-bs5',
- 'lightbox2',
- 'granim',
- 'slick-carousel',
- 'mjml',
- 'tailwind-color-palette',
- 'paper-css'
- )
- CELERY_BEAT_SCHEDULE = {
- "dumpapi": {
- "task": "backend.views.dump_api_task",
- #"schedule": crontab(minute="*/1"),
- # "schedule": crontab(minute="*/30"),
- # "schedule": crontab(hour="17", minute="15"),
- "schedule": crontab(minute="*/3", hour="17-21"),
- },
- }
|