bandaid
Some checks failed
Build and Deploy Backend / Run Linters and Tests (push) Failing after 7s
Build and Deploy Backend / Build and Deploy (push) Has been skipped

This commit is contained in:
c-d-p
2025-05-01 00:16:56 +02:00
parent 5e822da407
commit 0391cb3505
2 changed files with 5 additions and 5 deletions

View File

@@ -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