26 lines
634 B
Text
26 lines
634 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
|
|
|
|
# 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
|
|
|
|
# Firefox binary path
|
|
FIREFOX_BINARY=firefox-esr
|
|
|
|
# Geckodriver path
|
|
GECKODRIVER_PATH=/usr/local/bin/geckodriver
|
|
|
|
# Extensions directory (dark-reader.xpi, ublock_origin.xpi)
|
|
EXTRAS_DIR=/app/extras
|
|
|
|
# Persistent data directory (tokens.txt, used.txt, screenshots)
|
|
DATA_DIR=/data
|