mirror of
https://github.com/kevin-DL/fast_api_api_template.git
synced 2026-01-11 09:44:34 +00:00
16 lines
284 B
Python
16 lines
284 B
Python
from pydantic import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
app_name: str = "Fast API Template"
|
|
sqlalchemy_database_url: str
|
|
secret_key: str
|
|
algorithm: str
|
|
access_token_expire_minutes: int
|
|
|
|
class Config:
|
|
env_file = ".env"
|
|
|
|
|
|
settings = Settings()
|