eduardogsilva.routerfleet/routerfleet/settings.py

148 lines
3.7 KiB
Python
Raw Permalink Normal View History

2024-03-10 20:03:47 -03:00
"""
Django settings for routerfleet project.
Generated by 'django-admin startproject' using Django 5.0.2.
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 pathlib import Path
# 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-k5i_+5k!7i^!ss2!co_kq3a%8%@_m#)e0+$paq5xqmcu#_ahle'
# 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',
2024-04-01 12:36:50 -03:00
'django_cleanup.apps.CleanupConfig',
'crispy_forms',
'crispy_bootstrap4',
2024-03-16 15:14:14 -03:00
'user_manager',
'router_manager',
2024-03-17 10:43:19 -03:00
'monitoring',
'backup',
2024-04-03 18:20:21 -03:00
'backup_data',
'integration_manager',
2024-04-16 09:28:31 -03:00
'routerfleet_tools',
'message_center',
2024-07-10 10:18:29 -03:00
'import_tool'
2024-03-10 20:03:47 -03:00
]
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',
]
CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap4"
CRISPY_TEMPLATE_PACK = "bootstrap4"
2024-03-10 20:03:47 -03:00
ROOT_URLCONF = 'routerfleet.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
2024-03-10 21:50:12 -03:00
'DIRS': ['templates'],
2024-03-10 20:03:47 -03:00
'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 = 'routerfleet.wsgi.application'
# Database
# https://docs.djangoproject.com/en/5.0/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / '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',
},
]
# Internationalization
# https://docs.djangoproject.com/en/5.0/topics/i18n/
LANGUAGE_CODE = 'en-us'
2024-03-28 19:32:39 -03:00
TIME_ZONE = 'America/Sao_Paulo'
2024-03-10 20:03:47 -03:00
USE_I18N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/5.0/howto/static-files/
STATIC_URL = 'static/'
2024-03-10 21:50:12 -03:00
STATIC_ROOT = '/app_static_files/'
STATICFILES_DIRS = [
BASE_DIR / "static_files",
]
2024-03-10 20:03:47 -03:00
# Default primary key field type
# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
2024-03-28 13:13:44 -03:00
MEDIA_ROOT = '/var/lib/routerfleet/'
2025-06-17 15:22:23 -03:00
ROUTERFLEET_VERSION = 7504
2024-04-04 15:11:13 -03:00
from routerfleet.production_settings import *