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"
|
|
|
|
|
|
2024-11-20 14:27:00 +00:00
|
|
|
|
2024-11-19 12:08:21 +00:00
|
|
|
if __name__ == '__main__':
|
2024-11-20 14:27:00 +00:00
|
|
|
print(Settings().ALGORITHM)
|