21 lines
1.0 KiB
Plaintext
21 lines
1.0 KiB
Plaintext
# ── 运行模式 / adapter 档位(见 development/ADAPTER.md)──
|
||
OPENCLAW_TEST_TARGET=mock # mock | simulator_rpa | real_rpa
|
||
|
||
# ── Amazon 仿真(线上 sandbox,禁止 localhost:5173)──
|
||
AMAZON_SIM_BASE_URL=https://sandbox.jc2009.com/industries/ecommerce/amazon
|
||
AMAZON_SIM_REPORTS_URL=https://sandbox.jc2009.com/industries/ecommerce/amazon/seller/reports
|
||
AMAZON_SIM_LOGIN_URL=https://sandbox.jc2009.com/industries/ecommerce/amazon/login
|
||
|
||
# ── 浏览器 / RPA ──
|
||
OPENCLAW_BROWSER_HEADLESS=0 # 0=有头(默认) 1=无头(CI)
|
||
OPENCLAW_PLAYWRIGHT_STEALTH=1 # 1=开启反检测指纹(默认)
|
||
|
||
# ── 存证 ──
|
||
OPENCLAW_RECORD_VIDEO=1
|
||
OPENCLAW_ARTIFACTS_ON_FAILURE=1 # 1=失败截图(默认)
|
||
|
||
# ── 节流 / 超时 ──
|
||
STEP_DELAY_MIN=1.0 # 步骤间随机等待下限(秒)
|
||
STEP_DELAY_MAX=5.0 # 步骤间随机等待上限(秒)
|
||
HUMAN_WAIT_TIMEOUT=180 # 滑块/验证码/2FA 等人工超时(秒)
|