1 Star 0 Fork 0

GEvening/fastapiTemplate

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
settings.py 492 Bytes
一键复制 编辑 原始数据 按行查看 历史
LLove 提交于 2024-06-12 10:03 +08:00 . init
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
mysql_host: str = '127.0.0.1'
mysql_port: int = 3306
mysql_db_name: str = ''
mysql_user: str = 'root'
mysql_password: str = ''
timezone: str = 'Asia/Shanghai'
SECRET_KEY: str = 'd7724d7a5a8bb49de32647e73e8b0f93b4637c827dd3ada2a4c07a640bf67390'
ALGORITHM: str = 'HS256'
EXPIRE: int = 60 * 24 # 单位:分钟
class Config:
env_file = '.env'
settings = Settings()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liuyangCode/fastapi-template.git
git@gitee.com:liuyangCode/fastapi-template.git
liuyangCode
fastapi-template
fastapiTemplate
main

搜索帮助