mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-13 21:05:22 +00:00
71 lines
1.8 KiB
TypeScript
71 lines
1.8 KiB
TypeScript
import "./instrument.js";
|
|
|
|
import * as Sentry from "@sentry/node";
|
|
import { existsSync } from 'fs';
|
|
import { mkdir } from 'fs/promises';
|
|
import path from 'path';
|
|
import { AppContext } from "./types.js";
|
|
import { main } from "./main.js"
|
|
import { PrismaClient } from "@sourcebot/db";
|
|
import { env } from "./env.js";
|
|
|
|
// Register handler for normal exit
|
|
process.on('exit', (code) => {
|
|
console.log(`Process is exiting with code: ${code}`);
|
|
});
|
|
|
|
// Register handlers for abnormal terminations
|
|
process.on('SIGINT', () => {
|
|
console.log('Process interrupted (SIGINT)');
|
|
process.exit(130);
|
|
});
|
|
|
|
process.on('SIGTERM', () => {
|
|
console.log('Process terminated (SIGTERM)');
|
|
process.exit(143);
|
|
});
|
|
|
|
// Register handlers for uncaught exceptions and unhandled rejections
|
|
process.on('uncaughtException', (err) => {
|
|
console.log(`Uncaught exception: ${err.message}`);
|
|
process.exit(1);
|
|
});
|
|
|
|
process.on('unhandledRejection', (reason, promise) => {
|
|
console.log(`Unhandled rejection at: ${promise}, reason: ${reason}`);
|
|
process.exit(1);
|
|
});
|
|
|
|
const cacheDir = env.DATA_CACHE_DIR;
|
|
const reposPath = path.join(cacheDir, 'repos');
|
|
const indexPath = path.join(cacheDir, 'index');
|
|
|
|
if (!existsSync(reposPath)) {
|
|
await mkdir(reposPath, { recursive: true });
|
|
}
|
|
if (!existsSync(indexPath)) {
|
|
await mkdir(indexPath, { recursive: true });
|
|
}
|
|
|
|
const context: AppContext = {
|
|
indexPath,
|
|
reposPath,
|
|
cachePath: cacheDir,
|
|
}
|
|
|
|
const prisma = new PrismaClient();
|
|
|
|
main(prisma, context)
|
|
.then(async () => {
|
|
await prisma.$disconnect();
|
|
})
|
|
.catch(async (e) => {
|
|
console.error(e);
|
|
Sentry.captureException(e);
|
|
|
|
await prisma.$disconnect();
|
|
process.exit(1);
|
|
})
|
|
.finally(() => {
|
|
console.log("Shutting down...");
|
|
});
|