32 lines
827 B
Text
32 lines
827 B
Text
# HTTP server port
|
|
PORT=8080
|
|
|
|
# Target pool size (number of tokens to keep ready)
|
|
TARGET_SIZE=5
|
|
|
|
# Poll interval for checking new accounts when pool incomplete (seconds)
|
|
POLL_INTERVAL=30
|
|
|
|
# Minimum balance threshold - switch token when balance <= MIN_BALANCE
|
|
MIN_BALANCE=0
|
|
|
|
# HTTPS proxy URL (used by Firefox and balance API)
|
|
HTTPS_PROXY=http://user:pass@host:port
|
|
|
|
# Path to emails.txt (email:password per line)
|
|
EMAILS_FILE=/data/emails.txt
|
|
|
|
# Browser channel for Patchright (chrome or chromium)
|
|
BROWSER_CHANNEL=chrome
|
|
|
|
# Run browser headless (1/0)
|
|
HEADLESS=0
|
|
|
|
# Optional: override Patchright browser cache path
|
|
PLAYWRIGHT_BROWSERS_PATH=/opt/patchright-browsers
|
|
|
|
# Extensions directory (dark-reader.xpi, ublock_origin.xpi)
|
|
EXTRAS_DIR=/app/extras
|
|
|
|
# Persistent data directory (tokens.txt, used.txt, screenshots)
|
|
DATA_DIR=/data
|