Backend: implement InteractionBlock (#3810)

This commit is contained in:
Jonathan Dobson
2025-10-24 16:34:14 -04:00
committed by GitHub
parent f81d4bd5d8
commit 264b1751d4
8 changed files with 420 additions and 1 deletions

View File

@@ -95,6 +95,12 @@ class Settings(BaseSettings):
SKYVERN_TELEMETRY: bool = True
ANALYTICS_ID: str = "anonymous"
# email settings
SMTP_HOST: str = "localhost"
SMTP_PORT: int = 25
SMTP_USERNAME: str = "username"
SMTP_PASSWORD: str = "password"
# browser settings
BROWSER_LOCALE: str = "en-US"
BROWSER_TIMEZONE: str = "America/New_York"