| 1234567891011121314151617181920 |
- import os
- class Settings:
- # 服务器配置
- HOST: str = "192.168.77.249"
- PORT: int = 7733
- # 基础 URL (返回给树莓派用于访问)
- BASE_URL: str = f"http://{HOST}:{PORT}"
- # 图片存储文件夹名称
- UPLOAD_DIR_NAME: str = "uploads"
- # 绝对路径
- BASE_DIR: str = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
- UPLOAD_PATH: str = os.path.join(BASE_DIR, UPLOAD_DIR_NAME)
- settings = Settings()
|