mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 18:32:48 +00:00
172 lines
5.2 KiB
Python
172 lines
5.2 KiB
Python
import datetime
|
||
import os
|
||
from pathlib import Path
|
||
|
||
from ..const import CONFIG, PROJECT_DIR
|
||
import mimetypes
|
||
|
||
mimetypes.add_type("text/css", ".css", True)
|
||
mimetypes.add_type("text/javascript", ".js", True)
|
||
# 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/4.2/howto/deployment/checklist/
|
||
|
||
# SECURITY WARNING: keep the secret key used in production secret!
|
||
SECRET_KEY = 'django-insecure-g1u*$)1ddn20_3orw^f+g4(i(2dacj^awe*2vh-$icgqwfnbq('
|
||
|
||
# SECURITY WARNING: don't run with debug turned on in production!
|
||
DEBUG = CONFIG.get_debug()
|
||
|
||
ALLOWED_HOSTS = ['*']
|
||
|
||
DATABASES = {
|
||
'default': CONFIG.get_db_setting()
|
||
}
|
||
|
||
# Application definition
|
||
|
||
INSTALLED_APPS = [
|
||
'users.apps.UsersConfig',
|
||
'setting',
|
||
'dataset',
|
||
'application',
|
||
'embedding',
|
||
'django.contrib.contenttypes',
|
||
'django.contrib.messages',
|
||
'django.contrib.staticfiles',
|
||
'rest_framework',
|
||
"drf_yasg", # swagger 接口
|
||
'django_filters', # 条件过滤
|
||
|
||
]
|
||
|
||
MIDDLEWARE = [
|
||
'django.middleware.security.SecurityMiddleware',
|
||
'django.contrib.sessions.middleware.SessionMiddleware',
|
||
'django.middleware.common.CommonMiddleware',
|
||
'django.contrib.messages.middleware.MessageMiddleware',
|
||
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
||
]
|
||
|
||
JWT_AUTH = {
|
||
'JWT_EXPIRATION_DELTA': datetime.timedelta(seconds=60 * 60 * 2) # <-- 设置token有效时间
|
||
}
|
||
|
||
ROOT_URLCONF = 'smartdoc.urls'
|
||
# FORCE_SCRIPT_NAME
|
||
TEMPLATES = [
|
||
{
|
||
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
||
'DIRS': ['apps/static/ui'],
|
||
'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',
|
||
],
|
||
},
|
||
},
|
||
]
|
||
|
||
SWAGGER_SETTINGS = {
|
||
'DEFAULT_AUTO_SCHEMA_CLASS': 'common.config.swagger_conf.CustomSwaggerAutoSchema',
|
||
"DEFAULT_MODEL_RENDERING": "example",
|
||
'USE_SESSION_AUTH': False,
|
||
'SECURITY_DEFINITIONS': {
|
||
'Bearer': {
|
||
'type': 'apiKey',
|
||
'name': 'AUTHORIZATION',
|
||
'in': 'header',
|
||
}
|
||
}
|
||
}
|
||
|
||
# 缓存配置
|
||
CACHES = {
|
||
"default": {
|
||
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
||
},
|
||
# 存储用户信息
|
||
'user_cache': {
|
||
'BACKEND': 'common.cache.file_cache.FileCache',
|
||
'LOCATION': os.path.join(PROJECT_DIR, 'data', 'cache', "user_cache") # 文件夹路径
|
||
},
|
||
# 存储用户Token
|
||
"token_cache": {
|
||
'BACKEND': 'common.cache.file_cache.FileCache',
|
||
'LOCATION': os.path.join(PROJECT_DIR, 'data', 'cache', "token_cache") # 文件夹路径
|
||
},
|
||
"chat_cache": {
|
||
'BACKEND': 'common.cache.file_cache.FileCache',
|
||
'LOCATION': os.path.join(PROJECT_DIR, 'data', 'cache', "chat_cache") # 文件夹路径
|
||
}
|
||
}
|
||
|
||
REST_FRAMEWORK = {
|
||
'EXCEPTION_HANDLER': 'common.handle.handle_exception.handle_exception',
|
||
'DEFAULT_AUTHENTICATION_CLASSES': ['common.auth.authenticate.AnonymousAuthentication']
|
||
|
||
}
|
||
STATICFILES_DIRS = [(os.path.join(PROJECT_DIR, 'ui', 'dist'))]
|
||
|
||
STATIC_ROOT = os.path.join(BASE_DIR.parent, 'static')
|
||
|
||
WSGI_APPLICATION = 'smartdoc.wsgi.application'
|
||
|
||
# 邮件配置
|
||
EMAIL_ADDRESS = CONFIG.get('EMAIL_ADDRESS')
|
||
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
||
EMAIL_USE_TLS = CONFIG.get('EMAIL_USE_TLS') # 是否使用TLS安全传输协议(用于在两个通信应用程序之间提供保密性和数据完整性。)
|
||
EMAIL_USE_SSL = CONFIG.get('EMAIL_USE_SSL') # 是否使用SSL加密,qq企业邮箱要求使用
|
||
EMAIL_HOST = CONFIG.get('EMAIL_HOST') # 发送邮件的邮箱 的 SMTP服务器,这里用了163邮箱
|
||
EMAIL_PORT = CONFIG.get('EMAIL_PORT') # 发件箱的SMTP服务器端口
|
||
EMAIL_HOST_USER = CONFIG.get('EMAIL_HOST_USER') # 发送邮件的邮箱地址
|
||
EMAIL_HOST_PASSWORD = CONFIG.get('EMAIL_HOST_PASSWORD') # 发送邮件的邮箱密码(这里使用的是授权码)
|
||
|
||
# Database
|
||
# https://docs.djangoproject.com/en/4.2/ref/settings/#databases
|
||
|
||
|
||
# Password validation
|
||
# https://docs.djangoproject.com/en/4.2/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.2/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.2/howto/static-files/
|
||
|
||
STATIC_URL = 'static/'
|
||
|
||
# Default primary key field type
|
||
# https://docs.djangoproject.com/en/4.2/ref/settings/#default-auto-field
|
||
|
||
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|