CostEvalPlatform/config.py

18 lines
415 B
Python
Raw Permalink Normal View History

2024-11-19 12:08:21 +00:00
# -*- coding: utf-8 -*-
# @Time : 2024/11/19 下午7:30
# @Author : 河瞬
# @FileName: config.py
# @Software: PyCharm
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
ALGORITHM: str = "HS256"
DATABASE_URL: str = "sqlite:///test.db"
SECRET_KEY: str = "your_secret_key"
class Config:
env_file = ".env"
if __name__ == '__main__':
print(Settings().ALGORITHM)