bandaid
This commit is contained in:
Binary file not shown.
@@ -9,9 +9,9 @@ class Settings(BaseSettings):
|
||||
# Database settings - reads from environment or .env
|
||||
DB_PORT: int = 5432
|
||||
DB_NAME: str = "maia"
|
||||
DB_HOST: str
|
||||
DB_USER: str
|
||||
DB_PASSWORD: str
|
||||
DB_HOST: str = "localhost"
|
||||
DB_USER: str = "maia"
|
||||
DB_PASSWORD: str = "maia"
|
||||
|
||||
DB_URL: str = ""
|
||||
|
||||
@@ -22,8 +22,8 @@ class Settings(BaseSettings):
|
||||
JWT_ALGORITHM: str = "HS256"
|
||||
ACCESS_TOKEN_EXPIRE_MINUTES: int = 30
|
||||
REFRESH_TOKEN_EXPIRE_DAYS: int = 7
|
||||
PEPPER: str
|
||||
JWT_SECRET_KEY: str
|
||||
PEPPER: str = "pepper"
|
||||
JWT_SECRET_KEY: str = "secret"
|
||||
|
||||
# Other settings
|
||||
GOOGLE_API_KEY: str
|
||||
|
||||
Reference in New Issue
Block a user