File size: 284 Bytes
911e744
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os
from pydantic import BaseSettings
from dotenv import load_dotenv


class HomeSettings(BaseSettings):
    FEATURE_ENABLED: bool = True


home_settings = HomeSettings()


load_dotenv()
SECRET_KEY = os.getenv("SECRET_KEY")

ALGORITHM = "HS256"
ACCESS_TOKEN_EXPIRE_MINUTES = 60