23 lines
551 B
Bash
23 lines
551 B
Bash
# Copy to .env and fill in
|
|
|
|
TARGET_URL=https://example.com
|
|
|
|
# Admin panel credentials
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_PASSWORD=changeme
|
|
ADMIN_HOST=127.0.0.1
|
|
ADMIN_PORT=8000
|
|
|
|
# SQLite DB path
|
|
DB_PATH=data/tracker.db
|
|
|
|
# Chrome: set to false to watch the browser window
|
|
HEADLESS=true
|
|
# CHROME_BINARY=/usr/bin/chromium # optional: explicit Chrome path
|
|
|
|
# Scenario 1 — comma-separated phone numbers
|
|
PHONE_NUMBERS=+989100000001,+989100000002,+989100000003
|
|
|
|
# Flow steps — comma-separated list matching keys in STEP_REGISTRY
|
|
FLOW_STEPS=step_home,step_browse
|