- 在valuation模型中新增多个评估字段,包括稀缺等级、市场活动时间等 - 完善用户端输出模型,确保所有字段正确序列化 - 修复文件上传返回URL缺少BASE_URL的问题 - 更新Docker镜像版本至v1.2 - 添加静态文件路径到中间件排除列表 - 优化估值评估创建接口,自动关联当前用户ID
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 = "127.0.0.1"
|
|
SERVER_PORT: int = 9999
|
|
BASE_URL: str = f"http://{SERVER_HOST}:{SERVER_PORT}"
|
|
|
|
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()
|