7adc7c00ab
Enable managed remote browser custom pages with login autofill and add website sync workflows so external admin surfaces can be handled inside SmartUp. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
23 lines
656 B
Bash
23 lines
656 B
Bash
# ===== 必填 =====
|
||
# 管理员账号(首次启动自动创建)
|
||
ADMIN_EMAIL=admin@smartup.local
|
||
ADMIN_PASSWORD=changeme123
|
||
|
||
# ===== 推荐配置 =====
|
||
# JWT 签名密钥(生产环境请替换): openssl rand -hex 32
|
||
JWT_SECRET=change-me-in-production
|
||
|
||
# ===== 可选 =====
|
||
# 监听端口(默认 8899)
|
||
SERVER_PORT=8899
|
||
# 绑定地址(默认 0.0.0.0)
|
||
BIND_HOST=0.0.0.0
|
||
# 时区
|
||
TZ=Asia/Shanghai
|
||
# 连续失败多少次判定为 unhealthy(默认 3)
|
||
UNHEALTHY_THRESHOLD=3
|
||
# 远程浏览器 profile 存储目录
|
||
BROWSER_PROFILES_DIR=/app/data/browser-profiles
|
||
# 生产环境通常保持 true;调试时可改为 false
|
||
BROWSER_HEADLESS=true
|