9 lines
212 B
Python
9 lines
212 B
Python
|
|
from pydantic_settings import BaseSettings, SettingsConfigDict
|
||
|
|
|
||
|
|
|
||
|
|
class Settings(BaseSettings):
|
||
|
|
model_config = SettingsConfigDict(env_file=".env", extra="allow")
|
||
|
|
|
||
|
|
SQLALCHEMY_URL: str
|
||
|
|
|
||
|
|
settings = Settings()
|