Files
SmartUp/.env.example
T
liumangmang 7adc7c00ab Add remote browser pages and website sync
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>
2026-05-15 15:43:58 +08:00

23 lines
656 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ===== 必填 =====
# 管理员账号(首次启动自动创建)
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