SnapFeast / core /config.py
Testys's picture
Update core/config.py
1469fc1 verified
raw
history blame
538 Bytes
import os
from pathlib import Path
from dotenv import load_dotenv
from urllib.parse import quote_plus
from pydantic_settings import BaseSettings
load_dotenv()
class Settings(BaseSettings):
DATABASE_URL = "postgresql://snapfeast_db_owner:[email protected]/snapdb?sslmode=require"
JWT_SECRET_KEY: str = os.getenv("JWT_SECRET")
JWT_ALGORITHM: str = os.getenv("JWT_ALGORITHM")
ACCESS_TOKEN_EXPIRE_MINUTES: int = os.getenv("ACCESS_TOKEN")
def get_settings():
return Settings()