12 lines
476 B
Python
12 lines
476 B
Python
import os
|
|
|
|
TARGET_URL = os.getenv("TARGET_URL", "https://omegleweb.io/")
|
|
TARGET_WS_URL = os.getenv(
|
|
"TARGET_WS_URL", "wss://omegleweb.io:8443/socket.io/?EIO=4&transport=websocket"
|
|
)
|
|
LOCAL_HOST = os.getenv("LOCAL_HOST", "0.0.0.0")
|
|
LOCAL_PORT = int(os.getenv("LOCAL_PORT", "8765"))
|
|
HEADLESS = os.getenv("HEADLESS", "false").lower() in ("true", "1", "yes")
|
|
CF_WAIT_TIME = int(os.getenv("CF_WAIT_TIME", "60"))
|
|
SELENIUM_URL = os.getenv("SELENIUM_URL", "http://localhost:4444")
|