- 将估值计算改为后台任务执行,提高响应速度 - 添加估值评估记录的软删除功能 - 更新评估状态字段值从approved/rejected改为success/fail - 修复注册接口的HTTP状态码问题 - 更新API版本号和服务器配置 - 禁用FastAPI尾部斜杠重定向
100 lines
3.9 KiB
Python
100 lines
3.9 KiB
Python
import os
|
|
import typing
|
|
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
VERSION: str = "0.1.0"
|
|
APP_TITLE: str = "Vue FastAPI Admin"
|
|
PROJECT_NAME: str = "Vue FastAPI Admin"
|
|
APP_DESCRIPTION: str = "Description"
|
|
|
|
CORS_ORIGINS: typing.List = ["*"]
|
|
CORS_ALLOW_CREDENTIALS: bool = True
|
|
CORS_ALLOW_METHODS: typing.List = ["*"]
|
|
CORS_ALLOW_HEADERS: typing.List = ["*"]
|
|
|
|
DEBUG: bool = True
|
|
|
|
# 服务器配置
|
|
SERVER_HOST: str = "https://value.cdcee.net"
|
|
SERVER_PORT: int = 9999
|
|
BASE_URL: str = f"{SERVER_HOST}"
|
|
|
|
PROJECT_ROOT: str = os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir))
|
|
BASE_DIR: str = os.path.abspath(os.path.join(PROJECT_ROOT, os.pardir))
|
|
LOGS_ROOT: str = os.path.join(BASE_DIR, "app/logs")
|
|
SECRET_KEY: str = "3488a63e1765035d386f05409663f55c83bfae3b3c61a932744b20ad14244dcf" # openssl rand -hex 32
|
|
JWT_ALGORITHM: str = "HS256"
|
|
JWT_ACCESS_TOKEN_EXPIRE_MINUTES: int = 60 * 24 * 7 # 7 day
|
|
TORTOISE_ORM: dict = {
|
|
"connections": {
|
|
# SQLite configuration
|
|
"sqlite": {
|
|
"engine": "tortoise.backends.sqlite",
|
|
"credentials": {"file_path": f"{BASE_DIR}/db.sqlite3"}, # Path to SQLite database file
|
|
},
|
|
# MySQL/MariaDB configuration
|
|
# Install with: tortoise-orm[asyncmy]
|
|
# "mysql": {
|
|
# "engine": "tortoise.backends.mysql",
|
|
# "credentials": {
|
|
# "host": "localhost", # Database host address
|
|
# "port": 3306, # Database port
|
|
# "user": "yourusername", # Database username
|
|
# "password": "yourpassword", # Database password
|
|
# "database": "yourdatabase", # Database name
|
|
# },
|
|
# },
|
|
# PostgreSQL configuration
|
|
# Install with: tortoise-orm[asyncpg]
|
|
# "postgres": {
|
|
# "engine": "tortoise.backends.asyncpg",
|
|
# "credentials": {
|
|
# "host": "localhost", # Database host address
|
|
# "port": 5432, # Database port
|
|
# "user": "yourusername", # Database username
|
|
# "password": "yourpassword", # Database password
|
|
# "database": "yourdatabase", # Database name
|
|
# },
|
|
# },
|
|
# MSSQL/Oracle configuration
|
|
# Install with: tortoise-orm[asyncodbc]
|
|
# "oracle": {
|
|
# "engine": "tortoise.backends.asyncodbc",
|
|
# "credentials": {
|
|
# "host": "localhost", # Database host address
|
|
# "port": 1433, # Database port
|
|
# "user": "yourusername", # Database username
|
|
# "password": "yourpassword", # Database password
|
|
# "database": "yourdatabase", # Database name
|
|
# },
|
|
# },
|
|
# SQLServer configuration
|
|
# Install with: tortoise-orm[asyncodbc]
|
|
# "sqlserver": {
|
|
# "engine": "tortoise.backends.asyncodbc",
|
|
# "credentials": {
|
|
# "host": "localhost", # Database host address
|
|
# "port": 1433, # Database port
|
|
# "user": "yourusername", # Database username
|
|
# "password": "yourpassword", # Database password
|
|
# "database": "yourdatabase", # Database name
|
|
# },
|
|
# },
|
|
},
|
|
"apps": {
|
|
"models": {
|
|
"models": ["app.models", "aerich.models"],
|
|
"default_connection": "sqlite",
|
|
},
|
|
},
|
|
"use_tz": False, # Whether to use timezone-aware datetimes
|
|
"timezone": "Asia/Shanghai", # Timezone setting
|
|
}
|
|
DATETIME_FORMAT: str = "%Y-%m-%d %H:%M:%S"
|
|
|
|
|
|
settings = Settings()
|