fix: jwt_secret_key hinzufügen

This commit is contained in:
Hitonabi
2026-07-21 17:53:59 +02:00
parent 7a61440d22
commit e37aff2678
+3
View File
@@ -22,6 +22,9 @@ class Settings(BaseSettings):
# Logging # Logging
log_level: str = "INFO" log_level: str = "INFO"
# JWT
jwt_secret_key: Optional[str] = None
class Config: class Config:
env_file = ".env" env_file = ".env"
env_file_encoding = "utf-8" env_file_encoding = "utf-8"