2026.06.05 frontend javítgatás és új belépési logika megvalósítva

This commit is contained in:
Roo
2026-06-05 05:46:04 +00:00
parent 59a30ac428
commit 18524a08f2
38 changed files with 3967 additions and 1028 deletions

View File

@@ -75,8 +75,8 @@ class Settings(BaseSettings):
# --- Email ---
EMAIL_PROVIDER: str = "auto"
EMAILS_FROM_EMAIL: str = "info@profibot.hu"
EMAILS_FROM_NAME: str = "Profibot"
EMAILS_FROM_EMAIL: str = "noreply@servicefinder.hu"
EMAILS_FROM_NAME: str = "ServiceFinder"
SENDGRID_API_KEY: Optional[str] = None
SMTP_HOST: Optional[str] = None
@@ -85,7 +85,7 @@ class Settings(BaseSettings):
SMTP_PASSWORD: Optional[str] = None
# --- External URLs ---
FRONTEND_BASE_URL: str = "https://dev.servicefinder.hu"
FRONTEND_BASE_URL: str = "https://app.servicefinder.hu"
BACKEND_CORS_ORIGINS: List[str] = Field(
default=[
# Production domains
@@ -130,7 +130,7 @@ class Settings(BaseSettings):
# --- Google OAuth ---
GOOGLE_CLIENT_ID: str = ""
GOOGLE_CLIENT_SECRET: str = ""
GOOGLE_CALLBACK_URL: str = "https://dev.profibot.hu/api/v1/auth/callback/google"
GOOGLE_CALLBACK_URL: str = "https://dev.servicefinder.hu/api/v1/auth/callback/google"
# --- Brute-Force & Security ---
LOGIN_RATE_LIMIT_ANON: str = "5/minute"