We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8703998 commit 6a72d2eCopy full SHA for 6a72d2e
scripts/sync-sched/count-speakers-without-details.ts
@@ -4,6 +4,11 @@ import { join } from "node:path"
4
import { readFile } from "node:fs/promises"
5
6
import type { SchedSpeaker } from "@/app/conf/_api/sched-types"
7
+
8
+/**
9
+ * We download Sched's data to JSON files to avoid 30 reqs/min rate limit
10
+ * would breaks our static build when we try all the queries at once.
11
+ */
12
;(async function main() {
13
try {
14
const speakersFilePath = join(import.meta.dirname, "speakers.json")
0 commit comments