operations_project/daren_project/settings.py

228 lines
7.0 KiB
Python
Raw Normal View History

2025-05-07 18:01:48 +08:00
"""
Django settings for daren_project project.
Generated by 'django-admin startproject' using Django 5.2.
For more information on this file, see
https://docs.djangoproject.com/en/5.2/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/5.2/ref/settings/
"""
from pathlib import Path
import pymysql
2025-05-13 18:36:06 +08:00
import os
2025-05-07 18:01:48 +08:00
pymysql.install_as_MySQLdb()
# 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.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'django-insecure-aie+z75u&tnnx8@g!2ie+q)qhq1!eg&ob!c1(e1vr!eclh+xv6'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
2025-05-20 15:57:10 +08:00
ALLOWED_HOSTS = ['localhost', '127.0.0.1', '325a-180-159-100-165.ngrok-free.app']
2025-05-07 18:01:48 +08:00
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework.authtoken',
'rest_framework', # Django REST Framework
'channels', # WebSocket 支持
2025-05-20 15:57:10 +08:00
'django_filters', # 添加django-filter支持
2025-05-07 18:01:48 +08:00
'apps.accounts',
'apps.knowledge_base',
'apps.chat',
'apps.permissions',
2025-05-13 11:58:17 +08:00
'apps.notification',
2025-05-07 18:01:48 +08:00
'apps.gmail',
'apps.feishu',
'apps.common',
2025-05-13 11:58:17 +08:00
'apps.brands',
'apps.operation',
2025-05-20 15:57:10 +08:00
'apps.discovery', # 新添加的Discovery应用
'apps.template', # 新添加的Template应用
2025-05-20 18:01:02 +08:00
'django_celery_beat', # Celery定时任务
'django_celery_results', # Celery结果存储
2025-05-07 18:01:48 +08: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',
]
ROOT_URLCONF = 'daren_project.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [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',
],
},
},
]
WSGI_APPLICATION = 'daren_project.wsgi.application'
# Database
# https://docs.djangoproject.com/en/5.2/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'daren',
'USER': 'root',
'PASSWORD': '123456',
'HOST': '127.0.0.1',
'PORT': '3306',
}
}
# Password validation
# https://docs.djangoproject.com/en/5.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/5.2/topics/i18n/
LANGUAGE_CODE = 'zh-hans'
TIME_ZONE = 'Asia/Shanghai'
USE_I18N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/5.2/howto/static-files/
# 静态文件和模板
STATIC_URL = '/static/'
STATICFILES_DIRS = [BASE_DIR / 'static']
2025-05-20 18:01:02 +08:00
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
2025-05-07 18:01:48 +08:00
# Default primary key field type
# https://docs.djangoproject.com/en/5.2/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
# REST Framework 配置
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': [
'rest_framework.authentication.TokenAuthentication',
2025-05-13 11:58:17 +08:00
# 'rest_framework.authentication.SessionAuthentication',
2025-05-07 18:01:48 +08:00
],
'DEFAULT_PERMISSION_CLASSES': [
2025-05-20 15:57:10 +08:00
'rest_framework.permissions.AllowAny', # 允许所有人访问,用于测试
2025-05-13 11:58:17 +08:00
],
'DEFAULT_PARSER_CLASSES': [
'rest_framework.parsers.JSONParser',
'rest_framework.parsers.FormParser',
'rest_framework.parsers.MultiPartParser'
2025-05-07 18:01:48 +08:00
],
2025-05-20 15:57:10 +08:00
'EXCEPTION_HANDLER': 'apps.template.exceptions.custom_exception_handler',
2025-05-07 18:01:48 +08:00
}
2025-05-13 11:58:17 +08:00
2025-05-07 18:01:48 +08:00
# Channels 配置WebSocket
ASGI_APPLICATION = 'daren_project.asgi.application'
CHANNEL_LAYERS = {
'default': {
2025-05-08 17:25:32 +08:00
'BACKEND': 'channels.layers.InMemoryChannelLayer', # 使用内存通道层,无需 Redis
2025-05-07 18:01:48 +08:00
},
}
# 日志配置
# 自定义用户模型
AUTH_USER_MODEL = 'accounts.User'
API_BASE_URL = 'http://81.69.223.133:48329'
SILICON_CLOUD_API_KEY = 'sk-xqbujijjqqmlmlvkhvxeogqjtzslnhdtqxqgiyuhwpoqcjvf'
2025-05-20 15:57:10 +08:00
GMAIL_WEBHOOK_URL = 'https://325a-180-159-100-165.ngrok-free.app/api/gmail/webhook/'
2025-05-07 22:24:02 +08:00
APPLICATION_ID = 'd5d11efa-ea9a-11ef-9933-0242ac120006'
2025-05-13 11:58:17 +08:00
# 全局代理设置
# 格式为 'http://主机名:端口号',例如:'http://127.0.0.1:7890'
# 此代理将应用于所有HTTP/HTTPS请求和Gmail API请求
# 如果代理不可用请将此值设为None或注释掉此行
PROXY_URL = 'http://127.0.0.1:7890'
# Gmail Pub/Sub相关设置
2025-05-20 18:01:02 +08:00
GOOGLE_CLOUD_PROJECT_ID = 'knowledge-454905'
2025-05-13 18:36:06 +08:00
# 主题名称
GMAIL_PUBSUB_TOPIC = 'gmail-watch-topic'
2025-05-13 11:58:17 +08:00
# 设置允许使用Google Pub/Sub的应用列表
2025-05-13 18:36:06 +08:00
INSTALLED_APPS += ['google.cloud.pubsub']
2025-05-20 18:01:02 +08:00
# Celery配置
CELERY_BROKER_URL = 'redis://localhost:6379/0' # 使用Redis作为消息代理
CELERY_RESULT_BACKEND = 'redis://localhost:6379/0' # 使用Redis存储任务结果
CELERY_ACCEPT_CONTENT = ['json'] # 指定接受的内容类型
CELERY_TASK_SERIALIZER = 'json' # 任务序列化和反序列化使用JSON
CELERY_RESULT_SERIALIZER = 'json' # 结果序列化使用JSON
CELERY_TIMEZONE = 'Asia/Shanghai' # 使用上海时区
CELERY_TASK_TRACK_STARTED = True # 追踪任务的开始状态
CELERY_TASK_TIME_LIMIT = 300 # 任务的hard time limit
CELERY_TASK_SOFT_TIME_LIMIT = 240 # 任务的soft time limit
CELERY_WORKER_MAX_TASKS_PER_CHILD = 500 # 工作进程处理多少个任务后重启
# Windows平台Celery特定设置
CELERY_BROKER_CONNECTION_RETRY_ON_STARTUP = True # 启动时尝试重新连接
CELERY_WORKER_CONCURRENCY = 1 # Windows下使用单进程模式避免权限错误
CELERY_TASK_ALWAYS_EAGER = False # 不要在Django主进程中执行任务
CELERY_BROKER_HEARTBEAT = 0 # 禁用心跳检测解决Windows的问题
2025-05-20 15:57:10 +08:00
FEISHU_APP_ID = "cli_a5c97daacb9e500d"
FEISHU_APP_SECRET = "fdVeOCLXmuIHZVmSV0VbJh9wd0Kq1o5y"
FEISHU_DEFAULT_APP_TOKEN = "XYE6bMQUOaZ5y5svj4vcWohGnmg"
FEISHU_DEFAULT_ACCESS_TOKEN = "u-fK0HvbXVte.G2xzYs5oxV6k1nHu1glvFgG00l0Ma24VD"