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