From d378712e79c9d26b8d671ff124a2dac111f7087d Mon Sep 17 00:00:00 2001 From: Brandon Li Date: Sun, 30 Aug 2026 16:48:38 -0500 Subject: [PATCH] Default master_dashboard_url to https://master.juicerroom.com MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fresh installs point at the master dashboard without manual configuration. Seeded with INSERT OR IGNORE, so existing databases are untouched. Note that reporter.ts requires both master_dashboard_url and instance_name to be non-empty, so this alone does not start reporting — instance_name is still seeded blank and set per machine. Co-Authored-By: Claude Opus 5 --- lib/db.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db.ts b/lib/db.ts index 3fbfbef..dbcf428 100644 --- a/lib/db.ts +++ b/lib/db.ts @@ -182,7 +182,7 @@ db.exec(` const seedSetting = db.prepare(`INSERT OR IGNORE INTO settings (key, value) VALUES (?, ?)`); seedSetting.run('max_concurrent_accounts', '5'); seedSetting.run('tick_interval_seconds', '60'); -seedSetting.run('master_dashboard_url', ''); +seedSetting.run('master_dashboard_url', 'https://master.juicerroom.com'); seedSetting.run('instance_name', ''); seedSetting.run('trading_hours', 'full_cme');