mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2025-08-26 16:40:40 +03:00
15 lines
352 B
Python
15 lines
352 B
Python
import os
|
|
|
|
from pydantic import PostgresDsn, RedisDsn
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
asyncpg_url: PostgresDsn = os.getenv("SQL_URL")
|
|
redis_url: RedisDsn = os.getenv("REDIS_URL")
|
|
jwt_algorithm: str = os.getenv("JWT_ALGORITHM")
|
|
jwt_expire: int = os.getenv("JWT_EXPIRE")
|
|
|
|
|
|
settings = Settings()
|