docker-compose: Backfill emotes directory

pull/315/merge
Mike Lang 1 year ago committed by Mike Lang
parent 9f523c65cd
commit fff01876a9

@ -154,6 +154,9 @@
// Set to null to disable. // Set to null to disable.
backfill_max_hours_ago:: 24 * 30 * 6, // approx 6 months backfill_max_hours_ago:: 24 * 30 * 6, // approx 6 months
// Extra directories (besides segments) to backfill
backfill_dirs:: ["emotes"],
// The spreadsheet id and worksheet names for sheet sync to act on // The spreadsheet id and worksheet names for sheet sync to act on
sheet_id:: "your_id_here", sheet_id:: "your_id_here",
worksheets:: ["Tech Test & Preshow"] + ["Day %d" % n for n in std.range(1, 8)], worksheets:: ["Tech Test & Preshow"] + ["Day %d" % n for n in std.range(1, 8)],
@ -312,6 +315,7 @@
[ [
"--base-dir", "/mnt", "--base-dir", "/mnt",
"--qualities", std.join(",", $.qualities + (if $.chat_archiver.backfill then ["chat"] else [])), "--qualities", std.join(",", $.qualities + (if $.chat_archiver.backfill then ["chat"] else [])),
"--extras", std.join(",", $.backfill_dirs),
"--static-nodes", std.join(",", $.peers), "--static-nodes", std.join(",", $.peers),
"--backdoor-port", std.toString($.backdoor_port), "--backdoor-port", std.toString($.backdoor_port),
"--node-database", $.db_connect, "--node-database", $.db_connect,

Loading…
Cancel
Save