forked from wei/pull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfull-sync.ts
32 lines (28 loc) · 921 Bytes
/
full-sync.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { createProbot } from "probot";
import { fullSync } from "@wei/probot-scheduler";
import logger from "@/src/utils/logger.ts";
import { connectMongoDB, disconnectMongoDB } from "@/src/configs/database.ts";
import { getRepositorySchedule } from "@/src/utils/get-repository-schedule.ts";
import { getRedisClient } from "@/src/configs/redis.ts";
import { appConfig } from "@/src/configs/app-config.ts";
async function main() {
let exitCode = 0;
try {
await connectMongoDB();
const redisClient = getRedisClient(`${appConfig.appSlug}-full-sync`);
const probot = createProbot({ overrides: { log: logger } });
await fullSync(probot, {
redisClient,
getRepositorySchedule,
});
} catch (error) {
logger.error(error, "Error during full sync");
exitCode = 1;
} finally {
await disconnectMongoDB();
Deno.exit(exitCode);
}
}
if (import.meta.main) {
await main();
}